-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update pyproject toml with full project information
- Loading branch information
Showing
1 changed file
with
32 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,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" |