forked from iiasa/ixmp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
106 lines (97 loc) · 2.21 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
96
97
98
99
100
101
102
103
104
105
106
[metadata]
name = ixmp
author = IIASA 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
[options]
packages = ixmp
zip_safe = True
include_package_data = True
install_requires =
click
genno >= 1.6.0
JPype1 >= 1.2.1
openpyxl
pandas >= 1.0
pint
PyYAML
xarray
setup_requires =
setuptools >= 41
setuptools_scm
[options.extras_require]
docs =
numpydoc
sphinx >= 3.0
sphinx_rtd_theme
sphinxcontrib-bibtex
report =
genno[compat]
tutorial =
jupyter
tests =
%(docs)s
%(tutorial)s
codecov
memory_profiler
nbclient >= 0.5
pretenders >= 1.4.4
pytest >= 5
pytest-cov
[options.entry_points]
console_scripts =
ixmp = ixmp.cli:main
[tool:pytest]
# Disable faulthandler plugin on Windows to prevent spurious console noise; see
# - https://github.com/jpype-project/jpype/issues/561
# - https://github.com/iiasa/ixmp/issues/229
# - https://github.com/iiasa/ixmp/issues/247
addopts = --cov=ixmp --cov-report=
-m "not rixmp and not performance"
-p no:faulthandler
markers =
rixmp: test of the ixmp R interface.
performance: ixmp performance test.
[aliases]
test = pytest
[isort]
force_grid_wrap = 0
include_trailing_comma = True
line_length = 88
multi_line_output = 3
use_parentheses = True
[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-jpype.*]
ignore_missing_imports = True
[mypy-nbclient.*]
ignore_missing_imports = True
[mypy-nbformat.*]
ignore_missing_imports = True
[mypy-numpy.*]
ignore_missing_imports = True
[mypy-memory_profiler.*]
ignore_missing_imports = True
[mypy-pandas.*]
ignore_missing_imports = True
[mypy-pint.*]
ignore_missing_imports = True
[mypy-pretenders.*]
ignore_missing_imports = True
[mypy-requests_cache.*]
ignore_missing_imports = True
[mypy-requests_mock.*]
ignore_missing_imports = True
[mypy-setuptools.*]
ignore_missing_imports = True
[mypy-sparse.*]
ignore_missing_imports = True