-
-
Notifications
You must be signed in to change notification settings - Fork 37
/
pyproject.toml
38 lines (33 loc) · 1.08 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
[build-system]
requires = ["setuptools>=61.0.0", "wheel", "numpy"]
build-backend = "setuptools.build_meta"
[project]
name = "iri2016"
version = "1.12.0"
description = "IRI2016 International Reference Ionosphere from Python"
keywords = ["thermosphere", "ionosphere"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Intended Audience :: Science/Research",
"Programming Language :: Fortran",
"Topic :: Scientific/Engineering :: Atmospheric Science"
]
dynamic = ["readme"]
requires-python = ">=3.9"
dependencies = ["numpy", "xarray", "python-dateutil"]
[project.optional-dependencies]
tests = ["pytest"]
lint = ["flake8", "flake8-bugbear", "flake8-builtins", "flake8-blind-except", "mypy", "types-python-dateutil"]
[tool.setuptools.dynamic]
readme = {file = ["README.md"], content-type = "text/markdown"}
[tool.black]
line-length = 99
[tool.mypy]
files = ["src"]
allow_redefinition = true
show_error_context = false
show_column_numbers = true
ignore_missing_imports = true