-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
34 lines (29 loc) · 773 Bytes
/
Copy pathpyproject.toml
File metadata and controls
34 lines (29 loc) · 773 Bytes
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
[build-system]
requires = ["setuptools>=68"]
build-backend = "setuptools.build_meta"
[project]
name = "valleyscope"
version = "0.1.0"
description = "Valley-resolved wavefunction, subspace, and symmetry diagnostics"
requires-python = ">=3.10"
dependencies = [
"numpy",
"h5py",
"PyYAML",
"spglib",
"irreptables",
# irreptables 3.1.0 imports irrep.utility at runtime but fails to declare
# it in its own metadata; declare it here so a fresh environment installs
# cleanly (clean-install defect fix).
"irrep",
"sympy",
]
[project.optional-dependencies]
test = ["pytest"]
[project.scripts]
valleyscope = "valleyscope.cli:main"
[tool.setuptools.packages.find]
include = ["valleyscope*"]
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["."]