forked from SCM-NV/PLAMS
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
105 lines (93 loc) · 2.52 KB
/
pyproject.toml
File metadata and controls
105 lines (93 loc) · 2.52 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
[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"
]
[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"
]
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"
[build-system]
requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"
[project.scripts]
scm-plams = "scm.plams.scripts.plams:main"
[tool.setuptools]
package-dir = { "scm.plams" = "." }
[tool.setuptools.dynamic]
version = {attr = "version.__version__"}
[tool.scm]
copy-to-target = [".flake8", "examples/**/*", "unit_tests/**/*"]