-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
53 lines (49 loc) · 1.44 KB
/
pyproject.toml
File metadata and controls
53 lines (49 loc) · 1.44 KB
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
[project]
authors = [
{ name = "Monica Benito", email = "monica.benito@uni-a.de" },
{ name = "Giovanni Francesco Diotallevi", email = "francesco.diotallevi@uni-a.de" },
{ name = "Irving Leander Reascos Valencia", email = "irving.reascos.valencia@uni-a.de" }
]
classifiers = [
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Intended Audience :: Science/Research",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering",
]
dependencies = [
"ipython==8.20",
"multimethod==1.12",
"numpy==2.0",
"sympy==1.13.3",
"tabulate==0.9",
"tqdm==4.66",
"colorama"
]
description = "A solver for perturbative expansions in quantum systems"
dynamic = ["version"]
license = { file = "LICENSE" }
name = "sympt"
readme = { file = "README.md", content-type = "text/markdown" }
requires-python = ">=3.8"
[project.urls]
Repository = "https://github.com/qcode-uni-a/sympt"
[build-system]
build-backend = "setuptools.build_meta"
requires = [
"setuptools>=66"
]
[tool.setuptools.dynamic]
version = {attr = "sympt.__version__"}
[tool.pytest.ini_options]
minversion = "6.0"
testpaths = [
"tests"
]