-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
55 lines (47 loc) · 1.09 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "plip"
authors = [
{name = "Akshay Krishna AK", email = "[email protected]"},
{name = "Julien Lam", email = "[email protected]"},
]
description = "A python package for PLIP ML potential"
requires-python = ">=3.8"
version = "0.3.5"
license = { "file" = "LICENSE" }
readme = "README.md"
dependencies = [
"scikit-learn",
"PyYAML ~=6.0",
"atsim.potentials ~=0.2.0",
]
[tool.setuptools]
package-dir = {"" = "src"}
[tool.setuptools.packages.find]
where = ["src"]
[project.scripts]
plip_fit = "plip.cli.interface:interface"
[project.optional-dependencies]
dev = [
"flake8 ~=6.0.0",
"pytest ~= 7.3.1",
"sphinx-rtd-theme ~=1.2.1",
"Sphinx ~=6.2.1",
"breathe ~=4.35.0",
]
[tool.commitizen]
name = "cz_conventional_commits"
tag_format = "$version"
version_type = "semver"
version = "0.3.5"
version_files = [
"pyproject.toml:version"
]
update_changelog_on_bump = true
major_version_zero = true
[tool.pytest.ini_options]
addopts = [
"--import-mode=importlib",
]