-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
37 lines (31 loc) · 893 Bytes
/
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
[build-system]
requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "stellar-spice"
version = "1.0"
readme = "README.md"
dependencies = [
"celluloid~=0.2.0",
"jax~=0.4.24",
"jaxlib~=0.4.24",
"numpy~=1.26.4",
"flax~=0.8.1",
"joblib~=1.3.2",
"transformer-payne~=0.5"
]
[project.optional-dependencies]
huggingface = ["huggingface-hub~=0.21.3"]
dev = ["pytest~=8.0.0", "pytest-datadir~=1.5.0", "coverage~=7.4.3"]
[tool.setuptools.dynamic]
dependencies = {file = ["requirements.txt"]}
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
spice = ["icosphere_cache/*.pickle", "spectrum/filter_data/*"]
[tool.pytest.ini_options]
python_classes = ["Test", "Describe"]
python_functions = ["test_", "it_", "and_", "but_", "they_"]
python_files = ["test_*.py",]
testpaths = ["tests",]
pythonpath = ["src"]