-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
61 lines (52 loc) · 1.44 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
56
57
58
59
60
61
[build-system]
requires = ["setuptools>=64", "setuptools_scm>=8"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools_scm]
[tool.pylint.main]
jobs = 0
disable = ["C"]
fail-under = 8
[project]
name = "aidsorb"
dynamic = ["version"]
authors = [
{name="Antonios P. Sarikas", email="antonios.sarikas@gmail.com"},
]
license = {text = "GPL-3.0-only"}
description = "Python package for deep learning on molecular point clouds."
readme = "README.md"
requires-python = ">=3.11"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: POSIX :: Linux",
]
dependencies = [
"ase>=3.23.0",
"plotly>=5.19.0",
"tqdm>=4.66.2",
"pandas>=2.2.0",
"roma>=1.5.1",
"lightning>=2.5.0",
"jsonargparse[signatures]>=4.35.0",
"torchmetrics>=1.3.1",
"numpy==1.26.4", # Temporarily, for avoiding dependency conflicts.
]
[project.urls]
Homepage = "https://github.com/adosar/aidsorb"
Issues = "https://github.com/adosar/aidsorb/issues"
Documentation = "https://aidsorb.readthedocs.io/en/stable/"
[project.scripts]
aidsorb = "aidsorb._cli:aidsorb_cli"
aidsorb-lit = "aidsorb._cli:lightning_cli"
[project.optional-dependencies]
docs = [
"sphinx==7.3.7",
"sphinx-rtd-theme==3.0.2",
"sphinx-copybutton==0.5.2",
"sphinx-design==0.6.0",
"sphinx-gallery==0.16.0",
"kaleido==0.2.1",
]