-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
71 lines (63 loc) · 1.72 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
[tool.poetry]
authors = ["Yvan Nollet <yvan.nollet@rayference.eu>"]
classifiers = [
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
]
description = "The U.S. Standard Atmosphere 1976 model."
documentation = "https://ussa1976.readthedocs.io"
homepage = "https://github.com/nollety/ussa1976"
license = "MIT"
name = "ussa1976"
readme = "README.rst"
repository = "https://github.com/nollety/ussa1976"
version = "0.3.4"
[tool.poetry.urls]
Changelog = "https://github.com/nollety/ussa1976/releases"
[tool.poetry.dependencies]
click = ">=7.0"
netCDF4 = ">=1.5.7"
numpy = ">=1.22"
python = ">=3.8, <4.0"
scipy = ">=1.6.3"
xarray = ">=0.18.2"
[tool.poetry.dev-dependencies]
Pygments = ">=2.8.1"
bandit = ">=1.7.2"
black = ">=21.12b0"
coverage = {extras = ["toml"], version = ">=5.4"}
darglint = ">=1.7.0"
flake8 = ">=3.8.4"
flake8-bandit = ">=2.1.2"
flake8-bugbear = ">=21.3.2"
flake8-docstrings = ">=1.5.0"
flake8-rst-docstrings = ">=0.0.14"
furo = ">=2021.4.11-beta.34"
jupyterlab = ">=3.0.16"
matplotlib = ">=3.4.2"
mypy = ">=0.812"
pep8-naming = ">=0.11.1"
pre-commit = ">=2.11.1"
pre-commit-hooks = ">=3.4.0"
pytest = ">=6.2.2"
reorder-python-imports = ">=2.4.0"
sphinx = ">=3.5.2"
sphinx-autobuild = ">=2020.9.1"
sphinx-click = ">=2.6.0"
sphinxcontrib-bibtex = ">=2.3.0"
typeguard = ">=2.11.1"
xdoctest = {extras = ["colors"], version = ">=0.15.4"}
[tool.poetry.scripts]
ussa1976 = "ussa1976.__main__:main"
[tool.coverage.paths]
source = ["src", "*/site-packages"]
[tool.coverage.run]
branch = true
source = ["ussa1976"]
[tool.coverage.report]
fail_under = 100
show_missing = true
[build-system]
build-backend = "poetry.core.masonry.api"
requires = ["poetry-core>=1.0.0"]