forked from iiasa/message-ix-models
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
82 lines (73 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
81
82
[metadata]
name = message-ix-models
author = IIASA Energy, Climate, and Environment (ECE) Program
author_email = message_ix@iiasa.ac.at
license = Apache 2.0
description = Tools for the MESSAGEix-GLOBIOM family of models
long_description = file: README.rst
long_description_content_type = text/x-rst
url = https://github.com/iiasa/message-ix-models
[options]
packages = message_ix_models
python_requires = >=3.7
include_package_data = True
zip_safe = True
install_requires =
click
colorama
# When the minimum is greater than the minimum in the latest ixmp
genno >= 1.8.0
iam_units
message_ix >= 3.2.0
pycountry
PyYAML
sdmx1 >= 2.2.0
setuptools >= 41
[options.extras_require]
docs =
# Temporary: should be covered via message_ix[report]
genno[compat]
sphinx >= 3.4.3
sphinx_rtd_theme
tests =
%(docs)s
pytest
pytest-cov
[options.entry_points]
console_scripts =
mix-models = message_ix_models.cli:main
[tool:pytest]
# Disable faulthandler plugin on Windows to prevent spurious console noise
addopts = -p no:faulthandler
[isort]
profile = black
[flake8]
max-line-length = 88
[mypy]
# Empty section required as of mypy 0.800;
# see https://github.com/python/mypy/issues/9940
[mypy-dask.*]
ignore_missing_imports = True
[mypy-colorama.*]
ignore_missing_imports = True
[mypy-jpype.*]
ignore_missing_imports = True
[mypy-matplotlib.*]
ignore_missing_imports = True
[mypy-message_data.*]
ignore_missing_imports = True
[mypy-pandas.*]
ignore_missing_imports = True
[mypy-pint.*]
ignore_missing_imports = True
[mypy-pycountry]
ignore_missing_imports = True
[mypy-setuptools]
ignore_missing_imports = True
# For ixmp.testing
[mypy-nbclient.*]
ignore_missing_imports = True
[mypy-nbformat.*]
ignore_missing_imports = True
[mypy-memory_profiler.*]
ignore_missing_imports = True