-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
46 lines (40 loc) · 1.15 KB
/
pyproject.toml
File metadata and controls
46 lines (40 loc) · 1.15 KB
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
[project]
name = "emulatte"
readme = "README.md"
requires-python = ">=3.11"
#authors = [{ "name" = "Neel Shah", "email" = "neel.shah@port.ac.uk" }]
authors = [{name = "Beth McCarthy Gould"},
{name = "Carola Zanoletti"},
{name = "David Sciotti"},
{name = "Kiyam Lin"},
{name = "Neel Shah"}]
#maintainers = [{ "name" = "Neel Shah", "email" = "neel.shah@port.ac.uk" }]
maintainers = [{name = "Beth McCarthy Gould"},
{name = "Carola Zanoletti"},
{name = "David Sciotti"},
{name = "Kiyam Lin"},
{name = "Neel Shah"}]
description = "This is an example cosmology package."
dependencies = ["numpy"]
version = "0.0.1"
[project.optional-dependencies]
docs = [
"myst-parser",
"numpydoc",
"sphinx",
"sphinx-book-theme",
]
test = [
"pytest",
"pytest-cov",
"pytest-emoji",
"pytest-pydocstyle",
]
lint = ["black", "isort"]
release = ["build", "twine"]
dev = ["mycosmo[docs,lint,release,test]"]
[tool.pydocstyle]
convention = "numpy"
[tool.pytest.ini_options]
addopts = ["--verbose", "--emoji", "--pydocstyle", "--cov=mycosmo"]
testpaths = ["mycosmo"]