-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
77 lines (69 loc) · 1.71 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
[project]
name = "sp_peaks"
readme = "README.md"
#requires-python = "==3.6.15"
#requires-python = ">=3.10"
requires-python = ">=3.9"
authors = [
{ "name" = "The CosmoStat Lab" },
]
maintainers = [
{ "name" = "Andreas Tersenov", "email" = "andreas.tersenov@cea.fr" },
{ "name" = "Lucie Baumont", "email" = "lucie.baumont@cea.fr" },
{ "name" = "Martin Kilbinger", "email" = "martin.kilbinger@cea.fr" },
]
dynamic = ["version"]
license = { "file" = "LICENSE" }
keywords = [
"CosmoStat",
"cosmology",
"weak gravitational lensing",
"peak counts",
]
classifiers = [
"Development Status :: 1 - Planning",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS",
"Topic :: Scientific/Engineering",
]
dependencies = [
"astropy>=4.0",
"numpy>=1.19",
"scipy>=1.5",
"scikit-learn>=1.3",
]
[project.optional-dependencies]
lint = [
"black",
]
release = [
"build",
"twine",
]
test = [
"pytest",
"pytest-black",
"pytest-cov",
"pytest-pydocstyle",
]
# Install for development
dev = ["sp_peaks[lint,release,test]"]
[project.urls]
Source = "https://github.com/CosmoStat/shear-pipe-peaks"
Documentation = "https://github.com/CosmoStat/shear-pipe-peaks"
Tracker = "https://github.com/CosmoStat/shear-pipe-peaks/issues"
[tool.black]
line-length = 80
[tool.pydocstyle]
convention = "numpy"
[tool.pytest.ini_options]
addopts = "--verbose --black --pydocstyle --cov=sp_peaks"
testpaths = ["sp_peaks"]
# Select library directory(ies)
[tool.setuptools]
packages = ["sp_peaks"]
[tool.setuptools.dynamic]
version = {attr = "sp_peaks.__version__"}