-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathpyproject.toml
More file actions
60 lines (49 loc) · 1.32 KB
/
pyproject.toml
File metadata and controls
60 lines (49 loc) · 1.32 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
[build-system]
requires = ["setuptools>=65"]
build-backend = "setuptools.build_meta"
[project]
name = "pyscfad"
dynamic = ["version"]
description = "PySCF with autodiff"
readme = { file = "README.md", content-type = "text/markdown" }
requires-python = ">=3.11"
license = { text = "Apache-2.0" }
authors = [
{ name = "Xing Zhang", email = "zhangxing.nju@gmail.com" },
]
dependencies = [
"jax>=0.7.1,<0.9",
"pyscfadlib>=0.2.0",
"pyscf>=2.3",
"pyscf-properties",
]
classifiers = [
"Development Status :: 3 - Alpha",
"Topic :: Scientific/Engineering",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
]
[project.optional-dependencies]
cuda12 = [
"jax[cuda12]>=0.7.1,<0.9",
"pyscfad-cuda12-plugin[with_cuda]>=0.2.0",
]
[project.urls]
Homepage = "https://github.com/fishjojo/pyscfad"
[tool.setuptools.dynamic]
version = { attr = "pyscfad.version.__version__" }
[tool.setuptools.packages.find]
exclude = ["examples", "*test*"]
[tool.setuptools]
include-package-data = true
[tool.setuptools.package-data]
"pyscfad.geomopt" = ["log.ini"]
[tool.pytest.ini_options]
addopts = """
--import-mode=importlib
-k "not _high_cost and not _skip"
--ignore=examples
"""