-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (34 loc) · 983 Bytes
/
Copy pathpyproject.toml
File metadata and controls
43 lines (34 loc) · 983 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
35
36
37
38
39
40
41
42
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "star"
version = "0.1.0"
description = "S.T.A.R. Model utilities for projection, quantile alignment, and TDA pipelines"
authors = [{name = "Patrick J. McNamara", email = "pmqr771@gmail.com"}]
readme = "README.md"
license = {text = "MIT"}
requires-python = ">=3.12"
dependencies = [
"numpy>=1.26.0,<2.0",
"pandas>=2.2.0,<3.0",
"scipy>=1.11.0,<2.0",
"sympy>=1.12",
"corner>=2.2.1"
]
[project.optional-dependencies]
tda = ["gudhi>=3.10.0", "ripser==0.6.14", "persim==0.3.8"]
dev = ["pytest", "pytest-cov", "black", "isort", "pre-commit"]
[tool.setuptools.packages.find]
where = ["src"]
[tool.black]
line-length = 88
target-version = ["py312"]
[tool.isort]
profile = "black"
line_length = 88
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py", "*_test.py"]
[project.scripts]
star-run-inference = "src.cli.star_run_inference:main"