-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
38 lines (35 loc) · 1.01 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
[build-system]
requires = ["setuptools>=61.0", "numpy>=1.19"]
build-backend = "setuptools.build_meta"
[project]
name = "frtrg"
version = "0.14.16"
authors = [
{ name="Valentin Bruch", email="valentin.bruch@rwth-aachen.de" },
]
description = "Floquet real-time renormalization group analysis of the Kondo model"
readme = "README.md"
requires-python = ">=3.7"
classifiers = [
"Programming Language :: Python :: 3",
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Physics",
"Natural Language :: English",
]
dependencies = [
"numpy",
"pandas",
"sqlalchemy",
"tables",
"scipy",
]
[project.optional-dependencies]
logging = ["colorlog"]
visualization = ["pyqtgraph","matplotlib"]
documentation = ["sphinx", "sphinx-autoapi", "furo"]
[project.urls]
"Homepage" = "https://github.com/stiglers-eponym/frtrg"
"Bug Tracker" = "https://github.com/stiglers-eponym/frtrg/issues"