forked from tenpy/tenpy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
91 lines (79 loc) · 2.6 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
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
[build-system]
requires = ["setuptools>=30.3.0", "numpy>1.13", "scipy>=0.18", "Cython>0.29"]
build-backend = "setuptools.build_meta"
[project]
name = "physics-tenpy"
dynamic = ["version"]
description = "Simulation of quantum many-body systems with tensor networks in Python"
readme = {file = "README.rst", content-type = "text/x-rst"}
requires-python = ">=3.6"
license = {text = "GPLv3"}
authors = [
{name = "TeNPy Developer Team"},
]
maintainers = [
{name = "Johannes Hauschild", email="[email protected]"},
{name = "Jakob Unfried", email="[email protected]"},
]
keywords = ["tensor networks", "matrix product states"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Natural Language :: English",
"Programming Language :: C",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Operating System :: Unix",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Physics",
]
dependencies = [
"numpy>=1.13",
"scipy>=0.18",
]
[project.optional-dependencies]
plot = ["matplotlib>=2.0"]
io = ["h5py", "pyyaml"]
test = ["pytest>=6.0"]
extra = ["bottleneck", "yapf==0.28.0", "docformatter==1.3.1"]
docbuild = [
"Sphinx",
"sphinx-rtd-theme",
"sphinxcontrib-bibtex",
"matplotlib",
"ipykernel",
"nbsphinx",
"pandoc",
"sphinx_copybutton",
]
all = ["tenpy[plot, io, test, extra, docbuild]"]
[project.urls]
"Homepage" = "https://github.com/tenpy/tenpy"
"Documentation" = "https://tenpy.readthedocs.io/"
"Source" = "https://github.com/tenpy/tenpy"
"User Forum" = "https://tenpy.johannes-hauschild.de"
"Bug Tracker" = "https://github.com/tenpy/tenpy/issues"
[project.scripts]
tenpy-run = "tenpy:console_main"
[tool.setuptools]
packages = ["tenpy"]
[tool.setuptools.dynamic]
version = {attr = "tenpy.__version__"}
[tool.pytest.ini_options]
filterwarnings = "always"
markers = [
"slow: marks tests as slow (deselect with '-m \"not slow\"')",
]
#{slow = "marks tests as slow (deselect with `-m 'not slow'`)"}
log_level = "INFO"
log_format = "%(asctime)s %(levelname)-8s %(filename)-16s%(lineno)4d: %(message)s"