-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
74 lines (61 loc) · 1.45 KB
/
Copy pathpyproject.toml
File metadata and controls
74 lines (61 loc) · 1.45 KB
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
[build-system]
requires = ["setuptools>=61,<83", "wheel", "versioningit~=3.1"]
build-backend = "setuptools.build_meta"
[project]
name = "crisp-ase"
version = "1.1.4"
readme = "README.md"
authors = [{ name = "IS", email = "indranilsaha15@gmail.com" }]
license = "CC-BY-NC-SA-4.0"
license-files = ["LICENSE"]
dependencies = [
"numpy>=1.24,<2.5",
"ase",
"fpsample>=0.3.3,<1.0",
"seaborn>=0.12.2",
"dscribe>=2.0.0",
"matplotlib>=3.3.4",
"joblib>=1.0.0",
"scikit-learn>=1.0.0",
"plotly>=5.9.0",
"pandas>=2.0.3",
"networkx>=3.1",
"statsmodels>=0.14.0"
]
[project.optional-dependencies]
test = ["pytest>=6.1.2"]
[project.scripts]
CRISP = "CRISP.cli:main"
[tool.setuptools]
zip-safe = false
include-package-data = true
[tool.setuptools.packages.find]
namespaces = false
where = ["."]
include = ["CRISP*"]
[tool.setuptools.package-data]
CRISP = [
"py.typed",
"data/*",
"data/**/*"
]
[tool.pytest.ini_options]
testpaths = ["CRISP/tests"]
addopts = "-ra"
[tool.flake8]
max-line-length = 88
extend-ignore = ["E203", "W503"]
[tool.versioningit]
default-version = "1+unknown"
[tool.versioningit.format]
# Use PEP 440 public versions
tag = "{base_version}"
distance = "{base_version}.post{distance}"
dirty = "{base_version}.post{distance}.dev0"
distance-dirty = "{base_version}.post{distance}.dev0"
[tool.versioningit.vcs]
method = "git"
match = ["*"]
default-tag = "1.1.4"
[tool.versioningit.write]
file = "CRISP/_version.py"