forked from iiasa/ixmp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
75 lines (71 loc) · 1.79 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
[metadata]
name = ixmp
author = IIASA Energy, Climate, and Environment (ECE) program
author_email = [email protected]
license = Apache
description = ix modeling platform
long_description_content_type = text/markdown
long_description = file:README.md
url = https://github.com/iiasa/ixmp
classifiers =
Development Status :: 5 - Production/Stable
Intended Audience :: Developers
Intended Audience :: Science/Research
License :: OSI Approved :: Apache Software License
Natural Language :: English
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: R
Topic :: Scientific/Engineering
Topic :: Scientific/Engineering :: Information Analysis
[options]
packages = ixmp
# https://mypy.readthedocs.io/en/latest/installed_packages.html
zip_safe = False
include_package_data = True
install_requires =
click
genno >= 1.12.0
JPype1 >= 1.2.1
openpyxl
pandas >= 1.2
pint
PyYAML
xarray
[options.extras_require]
docs =
GitPython
numpydoc
sphinx >= 3.0
sphinx_rtd_theme
sphinxcontrib-bibtex
report =
genno[compat,graphviz]
tutorial =
jupyter
tests =
%(docs)s
%(report)s
%(tutorial)s
codecov
memory_profiler
nbclient >= 0.5
pretenders >= 1.4.4
pytest >= 5
pytest-benchmark
pytest-cov
[options.entry_points]
console_scripts =
ixmp = ixmp.cli:main
[flake8]
# FIXME the following exceed this limit
# .backend.io.s_read_excel: 26
# .backend.jdbc.JDBCBackend.item_get_elements: 19
# .core.scenario.Scenario.add_set: 17
max-complexity = 15
max-line-length = 88