-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpyproject.toml
More file actions
59 lines (53 loc) · 1.44 KB
/
pyproject.toml
File metadata and controls
59 lines (53 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
54
55
56
57
58
59
[project]
name = "sparse-ir"
version = "2.1.1"
description = "Python bindings for the libsparseir library, providing efficient sparse intermediate representation for many-body physics calculations"
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"numpy",
"scipy",
"pylibsparseir>=0.8.0,<0.9.0",
]
authors = [
{name = "SpM-lab"}
]
license = "MIT"
keywords = ["physics", "many-body", "green-functions", "sparse-ir"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Physics",
]
[project.urls]
Homepage = "https://github.com/SpM-lab/sparse-r"
Repository = "https://github.com/SpM-lab/sparse-r"
"Bug Tracker" = "https://github.com/SpM-lab/sparse-r/issues"
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-dir]
"" = "src"
[dependency-groups]
dev = [
"ipykernel>=6.29.5",
"jupytext>=1.17.2",
"matplotlib>=3.10.3",
"pytest>=8.4.1",
"sphinx>=8.0.0",
"sphinx-rtd-theme>=3.0.0",
]
doc = [
"sphinx>=8.0.0",
"sphinx-rtd-theme>=3.0.0",
"matplotlib>=3.10.3",
]
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py", "*_tests.py"]
python_classes = ["Test*"]
python_functions = ["test_*"]