forked from IAMconsortium/pyam
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
80 lines (76 loc) · 1.8 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
[metadata]
name = pyam-iamc
author = file: AUTHORS.rst
license = Apache Software License 2.0
description = Analysis & visualization of integrated-assessment scenarios
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/IAMconsortium/pyam
project_urls =
Documentation = https://pyam-iamc.readthedocs.io
classifiers =
Development Status :: 5 - Production/Stable
Intended Audience :: Science/Research
Topic :: Scientific/Engineering
License :: OSI Approved :: Apache Software License
Natural Language :: English
Programming Language :: Python :: 3
[options]
packages = pyam
include_package_data = True
# NOTE TO DEVS
# If you change a minimum version below, please explicitly implement the change
# in our minimum-reqs test in the file ./.github/workflows/pytest-dependency.yml
# Please also add a section "Dependency changes" to the release notes
install_requires =
iam-units >= 2020.4.21
numpy >= 1.19.0
requests
openpyxl
pandas >= 1.1.1
pint <= 0.17
PyYAML
matplotlib >= 3.2.0
seaborn
six
xlrd >= 2.0
setuptools >= 41
setuptools_scm
# required explicitly for Python 3.7
importlib_metadata
setup_requires =
setuptools >= 41
setuptools_scm
[options.extras_require]
tests =
coverage
coveralls
pytest
pytest-cov
pytest-mpl
optional_plotting =
plotly
optional_io_formats =
datapackage
pandas-datareader
unfccc_di_api >= 2.0
tutorials =
pypandoc
nbformat
nbconvert
jupyter_client
ipykernel
docs =
sphinx
nbsphinx
sphinx-gallery
cloud_sptheme
pillow
sphinxcontrib-bibtex < 2.0
sphinxcontrib-programoutput
numpydoc
kaleido
autodocsumm
# docs requires 'tutorials'
[flake8]
max-line-length = 88