Skip to content

Commit

Permalink
Update pyproject toml with full project information
Browse files Browse the repository at this point in the history
  • Loading branch information
Wentzell committed Jul 5, 2024
1 parent 8db4450 commit 6c6686a
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions pyproject.toml
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"

0 comments on commit 6c6686a

Please sign in to comment.