-
Notifications
You must be signed in to change notification settings - Fork 17
/
pyproject.toml
44 lines (35 loc) · 1.22 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
[build-system]
requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["."]
include = ["libdmet*"]
exclude = []
namespaces = false
[project]
name = "libdmet"
version = "0.5"
dependencies = ["pyscf>=2.0", "numpy", "scipy", "h5py"]
requires-python = ">= 3.1"
authors = [
{name = "Zhihao Cui", email = "zhcui0408@gmail.com"},
]
maintainers = [
{name = "Zhihao Cui", email = "zhcui0408@gmail.com"},
]
description = "A library of density matrix embedding theory (DMET) for lattice models and realistic solids."
readme = "README.md"
classifiers = [
# How mature is this project? Common values are
# 3 - Alpha
# 4 - Beta
# 5 - Production/Stable
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Topic :: Software Development :: Build Tools",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python :: 3",
]
[project.urls]
Repository = "https://github.com/gkclab/libdmet_preview"
"Bug Tracker" = "https://github.com/gkclab/libdmet_preview/issues"