-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
35 lines (32 loc) · 1.02 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["src"]
[project]
name = "adapol"
version = "0.1.0"
authors = [
{ name="Zhen Huang", email="[email protected]" },
{ name="Chia-Nan Yeh", email="[email protected]"},
{ name="Nils Wentzell", email="[email protected]"},
{ name="Jason Kaye", email="[email protected]"},
{ name="Lin Lin", email="[email protected]"}
]
description = "Adaptive Pole Fitting for Quantum Many-Body Physics "
readme = "README.md"
keywords = ["Bath", "Fitting", "Hybridization", "DMFT", "Matsubara"]
requires-python = ">=3.7"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
]
dependencies = [
"numpy",
"scipy",
"cvxpy"
]
[project.urls]
"Homepage" = "https://flatironinstitute.github.io/adapol"
"Bug Tracker" = "https://github.com/flatironinstitute/adapol/issues"