-
Notifications
You must be signed in to change notification settings - Fork 13
/
pyproject.toml
49 lines (45 loc) · 978 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
38
39
40
41
42
43
44
45
46
47
48
49
[project]
name = "shapepipe"
version = "1.0.2"
description = "Galaxy shape measurement pipeline."
readme = "README.rst"
authors = [
{ name = "Samuel Farrens", email = "samuel.farrens@cea.fr" },
{ name = "Axel Guinot", email = "axel.guinot@cea.fr" },
{ name = "Martin Kilbinger", email = "martin.kilbinger@cea.fr" }
]
license = { "file" = "LICENSE" }
requires-python = ">=3.11"
dependencies = [
"joblib>=0.13",
"modopt>=1.2",
"numpy>=1.14"
]
[project.optional-dependencies]
doc = [
"myst-parser",
"numpydoc",
"sphinx",
"sphinxcontrib-bibtex",
"sphinx-book-theme"
]
lint = [
"black",
"isort"
]
release = [
"build",
"twine",
]
test = [
"pytest",
"pytest-cov",
"pytest-pycodestyle",
"pytest-pydocstyle"
]
dev = ["shapepipe[doc,lint,release,test]"]
[project.scripts]
shapepipe_run = "shapepipe.shapepipe_run:main"
[tool.pytest.ini_options]
addopts = "--verbose --cov=shapepipe"
testpaths = ["shapepipe"]