-
-
Notifications
You must be signed in to change notification settings - Fork 24
/
pyproject.toml
51 lines (44 loc) · 1.2 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
[build-system]
requires = ["setuptools>=61.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "msise00"
description = "Python API for Fortran MSISE-00 neutral atmosphere model."
keywords = ["atmosphere", "geospace"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Science/Research",
"Operating System :: OS Independent",
"Programming Language :: Fortran",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Atmospheric Science"
]
dependencies = ["python-dateutil", "numpy", "xarray", "geomagindices>=1.4.0"]
dynamic = ["readme", "version"]
requires-python = ">=3.9"
[tool.setuptools.dynamic]
readme = {file = ["README.md"], content-type = "text/markdown"}
version = {attr = "msise00.__version__"}
[project.optional-dependencies]
tests = ["pytest", "netCDF4"]
lint = [
"flake8",
"flake8-bugbear",
"flake8-builtins",
"flake8-blind-except",
"mypy",
"types-python-dateutil"
]
plot = [
"matplotlib",
"astropy",
"seaborn",
"pymap3d"
]
[tool.black]
line-length = 100
[tool.mypy]
files = ["src/"]
ignore_missing_imports = true
allow_redefinition = true