-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
49 lines (43 loc) · 1.01 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
[project]
name = "cosmostatmap"
readme = "README.rst"
requires-python = ">=3.10"
authors = [{ "name" = "Samuel Farrens", "email" = "samuel.farrens@cea.fr" }]
maintainers = [{ "name" = "Samuel Farrens", "email" = "samuel.farrens@cea.fr" }]
description = 'The CosmoStatMap shows the diversity of the CosmoStat team.'
dependencies = [
"descartes",
"geopandas",
"geoplot",
"matplotlib",
"numpy",
"pyyaml",
]
version = "0.0.1"
[project.optional-dependencies]
docs = ["myst-parser", "numpydoc", "sphinx", "sphinx-book-theme"]
lint = ["black", "isort"]
test = [
"pytest",
"pytest-black",
"pytest-cov",
"pytest-emoji",
"pytest-pydocstyle",
]
# Install for development
dev = ["cosmostatmap[docs,lint,test]"]
[tool.setuptools]
script-files = ["scripts/generate_map.py"]
[tool.black]
line-length = 88
[tool.pydocstyle]
convention = "numpy"
[tool.pytest.ini_options]
addopts = [
"--verbose",
"--black",
"--emoji",
"--pydocstyle",
"--cov=cosmostatmap",
]
testpaths = ["src"]