-
Notifications
You must be signed in to change notification settings - Fork 17
/
setup.cfg
43 lines (40 loc) · 943 Bytes
/
setup.cfg
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
[metadata]
name = konrad
author = The konrad developers
version = attr: konrad.__version__
url = https://github.com/atmtools/konrad
license = MIT
description = 'Implementation of a radiative-convective equilibrium model.
long_description = file: README.md
long_description_content_type = text/markdown
classifiers =
Intended Audience :: Science/Research
License :: OSI Approved :: MIT License
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
[options]
python_requires = >=3.10
packages = find_namespace:
include_package_data = True
install_requires =
ipython!=8.7.0
matplotlib>=2.0.0
netcdf4>=1.2.7
numpy>1.22.0
scipy>=0.19.0
typhon>=0.10.0
xarray>=0.9.1
climt>=0.16.25
sympl>=0.4.0
[options.extras_require]
arts =
pyarts>=2.5.8
docs =
jupyter-book
sphinx
sphinx_rtd_theme
tests =
pytest
[flake8]
max-line-length = 88
extend-ignore = E203