-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpyproject.toml
64 lines (56 loc) · 1.55 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
[build-system]
requires = ["setuptools>=65.5.0", "wheel"]
[project]
name = "resspect"
version = "0.1.0"
description = "resspect - Recommendation System for Spectroscopic Follow-up"
readme = "README.md"
authors = [
{ name = "The RESSPECT team", email = "[email protected]" }
]
license = { text = "GPL-3.0-or-later" }
dependencies = [
"flask==2.3.2",
"astropy>=5.2.1",
"matplotlib>=3.7.0",
"numpy>=1.24.2",
"pandas>=1.5.3",
"progressbar2>=4.2.0",
"pytest>=7.2.1",
"scikit_learn>=1.2.1",
"scipy>=1.10.0",
"seaborn>=0.12.2",
"xgboost>=1.7.3",
"iminuit>=1.20.0",
"light_curve>=0.8.1"
]
[project.urls]
Homepage = "https://github.com/COINtoolbox/resspect"
Source = "https://github.com/COINtoolbox/resspect"
[project.scripts]
build_canonical = "resspect.scripts.build_canonical:main"
build_time_domain_snpcc = "resspect.scripts.build_time_domain_snpcc:main"
build_time_domain_plasticc = "resspect.scripts.build_time_domain_plasticc:main"
calculate_cosmology_metric = "resspect.scripts.calculate_cosmology_metric:main"
fit_dataset = "resspect.scripts.fit_dataset:main"
make_metrics_plots = "resspect.scripts.make_metrics_plots:main"
run_loop = "resspect.scripts.run_loop:main"
run_time_domain = "resspect.scripts.run_time_domain:main"
[project.optional-dependencies]
dev = [
"pytest",
]
[tool.setuptools.packages.find]
include = ["resspect*"]
[tool.pytest]
addopts = ["--pyargs"]
[tool.tox]
legacy_tox_ini = """
[tox]
envlist = py38
[testenv]
extras = dev
isolated_build = true
commands =
pytest -s
"""