-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
46 lines (41 loc) · 1011 Bytes
/
pyproject.toml
File metadata and controls
46 lines (41 loc) · 1011 Bytes
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
[tool.poetry]
name = "magcoordpy"
version = "0.2.4"
description = "A python package for working with magnetic coordinate transformations"
authors = ["Giorgio Savastano <giorgio.savastano@uniroma1.it>"]
license = "MIT"
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.8"
numpy = "^1.22.2"
pymap3d = "^2.7.2"
urllib3 = "^1.26.8"
[tool.poetry.dev-dependencies]
pytest = "^7.0.1"
coverage = "^6.3.2"
pre-commit = "^2.17.0"
Sphinx = "^4.4.0"
sphinx-rtd-theme = "^1.0.0"
zarr = "^2.11.0"
s3fs = "^2022.2.0"
pytest-cov = "^3.0.0"
numpydoc = "^1.2"
autodocsumm = "^0.2.7"
nbsphinx = "^0.8.8"
myst-parser = "^0.17.0"
[tool.poetry.extras]
docs = ['sphinx']
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
log_cli = true
log_cli_level = "INFO"
log_cli_format = "%(asctime)s [%(levelname)8s] %(message)s (%(filename)s:%(lineno)s)"
log_cli_date_format = "%Y-%m-%d %H:%M:%S"
testpaths=[
"tests"
]
markers =[
"unit: Unit tests.",
]