-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
88 lines (79 loc) · 2.56 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
[tool.poetry]
name = "metrics-as-scores"
version = "2.8.2"
description = "Interactive web application, tool- and analysis suite for approximating, exploring, understanding, and sampling from conditional distributions."
authors = ["Sebastian Hönel <development@hoenel.net>"]
license = "Dual-licensed under GNU General Public License v3 (GPLv3) and closed-source"
readme = "README.md"
homepage = "https://github.com/mrshoenel/metrics-as-scores"
repository = "https://github.com/mrshoenel/metrics-as-scores/issues"
packages = [{include = "metrics_as_scores", from = "src"}]
include = ["src/metrics_as_scores/pyproject.toml"]
keywords = ["distribution fitting", "statistical tests", "context-dependent", "metrics", "quality", "score"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Intended Audience :: Science/Research",
"Intended Audience :: Education",
"Intended Audience :: End Users/Desktop",
"Topic :: Utilities"
]
[tool.poetry.scripts]
mas = "metrics_as_scores.cli.Cli:cli"
[tool.poetry.build]
generate-setup-file = false
script = "build.py"
[tool.poetry.dependencies]
python = ">=3.10, <3.12"
bokeh = "^2.4.3"
joblib = "^1.2.0"
jupyterlab = "^3.4.7"
matplotlib = "^3.6.0"
ptvsd = "^4.3.2"
pymoo = "^0.6.0"
scipy = "^1.10.1"
statsmodels = "^0.13.2"
StrEnum = "^0.4.8"
tqdm = "^4.64.1"
Sphinx = "^5.3.0"
sphinx-rtd-theme = "^1.1.1"
toml = "^0.10.2"
rich = "^13.3.1"
questionary = "^1.10.0"
tabulate = "^0.9.0"
scikit-learn = "^1.2.1"
nptyping = "^2.4.1"
pytest-cov = "^4.0.0"
poethepoet = "^0.18.1"
wget = "^3.2"
myst-parser = "^1.0.0"
[tool.poetry.group.dev.dependencies]
twine = "^4.0.1"
build = "^0.8.0"
poetry = "^1.3.2"
pytest = "^7.1.3"
coverage = "^6.5.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
testpaths = ["./test"]
filterwarnings = ["ignore:::.*nptyping*"]
addopts = [
"--cov=metrics_as_scores",
"--cov-report=term-missing"
]
[tool.poe.tasks]
test = "pytest --no-cov"
cov = "pytest --cov-report html:htmlcov"
docs_clean_win = "docs\\make clean html"
docs_apidoc_win = "sphinx-apidoc -o docs src\\metrics_as_scores --force"
docs_make_win = "docs\\make html"
docs = ["docs_clean_win", "docs_apidoc_win", "docs_make_win"]
readme = "quarto render README.qmd --to gfm"
poetry_build = "poetry build"
poetry_install = "poetry install"
prepare = ["readme", "poetry_install", "poetry_build", "poetry_install"]