-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathpyproject.toml
More file actions
135 lines (119 loc) · 3.13 KB
/
pyproject.toml
File metadata and controls
135 lines (119 loc) · 3.13 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
[project]
name = "plams"
dynamic = ["version"]
description = "Python Library for Automating Molecular Simulations"
readme = "README.md"
requires-python = ">=3.8"
license = { text = "LGPLv3" }
authors = [
{ name = "Software for Chemistry and Materials", email = "info@scm.com" }
]
maintainers = [
{ name = "Software for Chemistry and Materials", email = "info@scm.com" }
]
classifiers = [
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Scientific/Engineering :: Chemistry",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Topic :: Software Development :: Libraries :: Python Modules",
]
keywords = [
"molecular modeling",
"computational chemistry",
"workflow"
]
dependencies = [
"numpy>=1.21.2",
"dill>=0.3.6",
"typing-extensions>=4.4.0",
]
[project.optional-dependencies]
chem = [
"ase>=3.18",
"rdkit>=2017",
]
ams = [
"psutil>=5.8.0",
"py-ubjson>=0.16.1",
"watchdog>=2.1.8"
]
analysis = [
"scipy>=1.8.0",
"matplotlib>=3.5.1",
"pandas>=1.5.2",
"networkx>=2.7.1",
"natsort>=8.1.0",
"h5py>=3.6.0",
"ipython>=7.22.0",
"pyomo>=6.4.1",
"pillow>=10.4.0"
]
all = [
"ase>=3.18",
"rdkit>=2017",
"psutil>=5.8.0",
"py-ubjson>=0.16.1",
"watchdog>=2.1.8",
"scipy>=1.8.0",
"matplotlib>=3.5.1",
"pandas>=1.5.2",
"networkx>=2.7.1",
"natsort>=8.1.0",
"h5py>=3.6.0",
"ipython>=7.22.0",
"pyomo>=6.4.1",
"pillow>=10.4.0"
]
docs = [
"sphinx>=6.2.1,<8.2",
"sphinx_copybutton>=0.5.2",
"sphinx_design>=0.5.0",
"ipython>=7.22.0",
"nbconvert>=6.4.5"
]
examples = [
"jupyterlab>=3.5.2"
]
dev = [
"pytest>=7.4.0",
"coverage>=7.5.3",
"black==24.8.0",
"black[jupyter]==24.8.0",
"flake8==5.0.4",
"mypy==1.12.0"
]
[project.urls]
Homepage = "https://www.scm.com/doc/plams/"
Documentation = "https://www.scm.com/doc/plams/"
GitHub = "https://github.com/SCM-NV/PLAMS/"
Changelog = "https://github.com/SCM-NV/PLAMS/blob/trunk/CHANGELOG.md"
[project.scripts]
scm-plams = "scm.plams.scripts.plams:main"
[build-system]
requires = ["hatchling>=1.26", "hatch-vcs>=0.4.0", "setuptools-scm<9"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/scm"]
[tool.hatch.version]
source = "vcs"
[tool.hatch.build.hooks.vcs]
version-file = "src/scm/plams/version.py"
[tool.scm]
copy-to-target = [".flake8", "examples/**/*", "unit_tests/**/*"]
[[tool.uv.index]]
name = "gitea"
url = "https://git.scm.com/api/packages/SCM/pypi/simple"
publish-url = "https://git.scm.com/api/packages/SCM/pypi"
explicit = true