-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpyproject.toml
59 lines (52 loc) · 1.53 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
[build-system]
requires = ["setuptools>=61.0", "setuptools-git-versioning"]
build-backend = "setuptools.build_meta"
# Self-descriptive entries which should always be present
# https://packaging.python.org/en/latest/specifications/declaring-project-metadata/
[project]
name = "quax"
description = "Arbitrary order derivatives of electronic structure computations."
dynamic = ["version"]
readme = "README.md"
authors = [
{ name = "Adam Abbott", email = "[email protected]" },
{ name = "Erica Mitchell", email = "[email protected]" }
]
license = { text = "BSD-3C" }
# See https://pypi.org/classifiers/
classifiers = [
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3",
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research"
]
requires-python = ">=3.9"
# Declare any run-time dependencies that should be installed with the package.
dependencies = [
"importlib-resources;python_version>'3.8'",
"numpy>=1.23,<2.0",
"jax>=0.4.19",
"jaxlib>=0.4.19",
"h5py>=2.8.0",
"scipy>=1.9"
]
# Update the urls once the hosting is set up.
[project.urls]
"Source" = "https://github.com/CCQC/Quax/"
#"Documentation" = "Quax.readthedocs.io/"
[project.optional-dependencies]
test = [
"pytest>=6.1.2",
"pytest-cov"
]
[tool.setuptools]
zip-safe = false
[tool.setuptools.packages.find]
namespaces = false
where = ["."]
[tool.setuptools.package-data]
quax = ["integrals/*.so"]
[tool.setuptools-git-versioning]
enabled = true
dev_template = "{tag}.{ccount}+git.{sha}"
dirty_template = "{tag}.{ccount}+git.{sha}.dirty"