forked from primap-community/primap2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
95 lines (90 loc) · 1.88 KB
/
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
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
[metadata]
name = primap2
version = 0.9.2
author = Mika Pflüger
author_email = [email protected]
description = The next generation of the PRIMAP climate policy analysis suite.
long_description = file: README.rst, CHANGELOG.rst
long_description_content_type = text/x-rst
url = https://github.com/pik-primap/primap2
project_urls =
Documentation = https://primap2.readthedocs.io/
classifiers =
Development Status :: 3 - Alpha
Intended Audience :: Science/Research
Topic :: Scientific/Engineering :: Atmospheric Science
License :: OSI Approved :: Apache Software License
Natural Language :: English
Programming Language :: Python :: 3
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
license = Apache Software License 2.0
license_file = LICENSE
[options]
packages =
primap2
primap2.pm2io
primap2.tests
primap2.tests.data
python_requires = >=3.8
setup_requires =
setuptools_scm
install_requires =
xarray
pint
pint_xarray>=0.2
numpy
pandas
openscm_units>=0.3
loguru
scipy
h5netcdf>=0.10
h5py
bottleneck
matplotlib
ruamel.yaml
strictyaml
openpyxl
[options.extras_require]
test =
pytest
pytest-cov
xdoctest
dev =
pip
tbump
wheel
build
flake8
coverage
Sphinx>=4.2
sphinx-rtd-theme
twine
pre-commit
pytest
pytest-cov
xdoctest
setuptools
nbsphinx
numpydoc
ipykernel
jupyter
sphinx-autosummary-accessors
mypy
tox
numpydoc
datalad =
datalad
[options.package_data]
* =
*.csv
*.nc
[flake8]
exclude = docs
max-line-length = 88
extend-ignore = E203, W503
per-file-ignores = primap2/__init__.py:F401
[doc8]
max-line-length = 88
ignore-path-errors = docs/data_format_details.rst;D001,docs/interchange_format_details.rst;D001