forked from transportenergy/database
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
118 lines (109 loc) · 2.5 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
107
108
109
110
111
112
113
114
115
116
117
118
[metadata]
name = transport-energy
author = International Transport Energy Modeling group
author_email = mail@transportenergy.org
maintainer = Paul Natsuo Kishimoto
maintainer_email = mail@paul.kishimoto.name
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/transportenergy/database
project_urls=
Documentation = https://transportenergy.readthedocs.io
classifiers =
Development Status :: 4 - Beta
Operating System :: OS Independent
Intended Audience :: Science/Research
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Topic :: Scientific/Engineering
[options]
packages = item
include_package_data = True
install_requires =
click
iam-units
openpyxl
pandas
pint
plotnine
pprint36
pycountry
pyyaml
sdmx1 >= 2.4.0
setuptools >= 41
xarray
setup_requires =
setuptools >= 41
setuptools_scm >= 3.5
[options.extras_require]
doc =
sphinx
sphinx-rtd-theme
eppa =
gdx >= 3
hist =
requests
requests-cache
tests =
%(doc)s
%(hist)s
pytest
pytest-cov
[options.entry_points]
console_scripts =
item = item.cli:main
[tool:pytest]
addopts = -m "not slow" --cov=item --cov-report=
markers =
slow: mark a test as slow.
network: mark a test that requires a network connection.
[coverage:run]
omit =
item/historical/legacy.py
item/historical/scripts/util/*
item/model/bp.py
item/model/cli.py
item/model/eia.py
item/model/eppa5.py
item/model/exxonmobil.py
item/model/get.py
item/model/itf.py
item/model/message.py
*/tests/*
[isort]
profile = black
[flake8]
max-line-length = 88
ignore =
# line break before binary operator
W503
[mypy]
# Empty section required as of mypy 0.800;
# see https://github.com/python/mypy/issues/9940
[mypy-gdx.*]
ignore_missing_imports = True
[mypy-iam_units.*]
ignore_missing_imports = True
[mypy-nbformat.*]
ignore_missing_imports = True
[mypy-numpy.*]
ignore_missing_imports = True
[mypy-pandas.*]
ignore_missing_imports = True
[mypy-pint.*]
ignore_missing_imports = True
[mypy-plotnine.*]
ignore_missing_imports = True
[mypy-pycountry.*]
ignore_missing_imports = True
[mypy-pytest.*]
ignore_missing_imports = True
[mypy-requests_cache.*]
ignore_missing_imports = True
[mypy-sdmx.*]
ignore_missing_imports = True
[mypy-setuptools.*]
ignore_missing_imports = True