-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
59 lines (45 loc) · 1.25 KB
/
Copy pathpyproject.toml
File metadata and controls
59 lines (45 loc) · 1.25 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 = "wigners"
requires-python = ">=3.10"
dynamic = ["version"]
license = "Apache-2.0 OR MIT"
authors = [
{name = "Guillaume Fraux", email = "guillaume.fraux@epfl.ch"},
]
readme = "README.md"
description = "Compute Wigner 3j and Clebsch-Gordan coefficients"
keywords = ["clebsch-gordan", "wigner"]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Chemistry",
"Topic :: Scientific/Engineering :: Physics",
]
dependencies = ["numpy"]
[project.urls]
homepage = "https://github.com/Luthaf/wigners"
repository = "https://github.com/Luthaf/wigners"
### ======================================================================== ###
[build-system]
requires = [
"setuptools >=77",
"wheel",
"packaging",
]
[tool.setuptools]
zip-safe = false
[tool.setuptools.packages.find]
where = ["python"]
[tool.setuptools.package-data]
wigners = ["_wigners.so"]
### ======================================================================== ###
[tool.pytest.ini_options]
testpaths = ["python/tests"]
python_files = ["*.py"]
[tool.tox]
environments = []
[tool.tox.env_run_base]
package = "wheel"
deps = ["pytest", "sympy"]
commands = [["pytest"]]