forked from iiasa/ixmp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
64 lines (59 loc) · 1.31 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
[metadata]
name = ixmp
author = IIASA Energy 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 =
JPype1 >= 0.7.5
click
dask [array] >= 2.14
graphviz
pandas >= 1.0
pint
PyYAML
sparse >= 0.10
xarray
xlrd
xlsxwriter
setup_requires =
setuptools >= 41
setuptools_scm
[options.extras_require]
tests =
codecov
jupyter
memory_profiler
nbformat >= 5.0
pretenders >= 1.4.4
pytest >= 5
pytest-cov
docs =
numpydoc
sphinx >= 3.0
sphinx_rtd_theme
sphinxcontrib-bibtex
tutorial = jupyter
[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