-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
48 lines (44 loc) · 1.24 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
39
40
41
42
43
44
45
46
47
48
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[project]
name = "pyDACP"
dynamic = ["version"]
authors = [
{name="pyDACP developers"},
]
description = "Package to compute eigenvalues using the dual applications of Chebyshev polynomials algorithm"
readme = "README.md"
requires-python = ">=3.9"
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: BSD License",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
dependencies = [
"numpy>=1.23",
"scipy>=1.8",
# "python-mumps>=0.0.1,<0.1", # add it as optional later
"packaging>=22.0", # For version parsing
]
[tool.hatch.version]
source = "vcs"
[tool.hatch.build.hooks.vcs]
version-file = "dacp/_version.py"
[project.urls]
"Documentation" = "https://pydacp.readthedocs.io/en/latest/"
"Repository" = "https://gitlab.kwant-project.org/qt/pyDACP"
"Bug Tracker" = "https://gitlab.kwant-project.org/qt/pyDACP/-/issues"
[tool.hatch.build.targets.wheel]
packages = ["dacp"]
[tool.hatch.build.targets.sdist]
include = [
"dacp",
"README.md",
"LICENSE",
"pyproject.toml",
"AUTHORS.md",
]