-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
52 lines (47 loc) · 1.29 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
[tool.poetry]
name = "space-classy"
version = "0.8.6"
description = "classification tool for minor bodies using reflectance spectra and visual albedos"
authors = ["Max Mahlke <max.mahlke@oca.eu>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/maxmahlke/classy"
documentation = "https://classy.readthedocs.io/en/latest/"
repository = "https://github.com/maxmahlke/classy.git"
packages = [{ 'include' = 'classy' }]
include = ["data/mixnorm", 'data/mcfa']
[tool.poetry.dependencies]
python = ">=3.8"
aiohttp = ">=3.8"
click = ">=8.1.2"
importlib-resources = ">=5.10.2"
lmfit = ">=1.2.0"
matplotlib = ">=3.7.0"
mcfa = "^0.1"
numpy = ">=1.22.3"
pandas = ">=1.4.2"
rich = ">=12.2.0"
scikit-learn = ">=1.2.1"
space-rocks = ">=1.9.7"
[tool.poetry.extras]
docs = [
"sphinx",
"sphinx-redactor-theme",
"sphinx_design",
"sphinx-hoverxref",
"jinja2",
'furo',
"sphinx-copybutton",
]
gui = ['pyside6', 'pyqtgraph']
[tool.pytest.ini_options]
addopts = "-v --cov=classy --cov-report=html:tests/htmlcov --html=tests/report.html"
markers = [
"slow: marks tests as slow (deselect with '-m \"not slow\"')",
"from_scratch: require empty CLASSY_DATA_DIR",
]
[tool.poetry.scripts]
classy = "classy.cli:cli_classy"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"