-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpyproject.toml
More file actions
48 lines (44 loc) · 1.11 KB
/
pyproject.toml
File metadata and controls
48 lines (44 loc) · 1.11 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "pyxdh"
version = "v0.0.7"
authors = [
{name = "ajz34", email = "ajz34@outlook.com"},
]
description = "Document and code of python and PySCF approach XYG3 type of density functional realization"
readme = "README.md"
requires-python = ">=3.8, <3.9"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: POSIX :: Linux",
]
dependencies = [
"pyscf==1.7.5",
"h5py==3.0",
"scipy==1.4.1",
"numpy==1.18",
"opt_einsum",
"jupyter",
"sphinx",
"nbsphinx",
"pyberny",
"sphinx_rtd_theme",
"sphinxcontrib-bibtex",
"jupyter_contrib_nbextensions",
"pandoc",
"matplotlib",
"docopt",
"codecov",
"pytest-cov",
]
[tool.setuptools]
include-package-data = true
[tool.setuptools.package-data]
"pyxdh.Validation.numerical_deriv" = ["*.dat"]
"pyxdh.Validation.gaussian" = ["*.fchk"]
[project.urls]
Homepage = "https://github.com/ajz34/Py_xDH"
Documentation = "https://py-xdh.rtfd.io"