-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
63 lines (60 loc) · 1.9 KB
/
setup.py
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
from pathlib import Path
from setuptools import find_packages, setup
long_description = Path("README.md").read_text().strip()
setup(
name="elmada",
version="0.1.1",
author="Markus Fleschutz",
author_email="mfleschutz@gmail.com",
description="Dynamic electricity carbon emission factors and prices for Europe",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/DrafProject/elmada",
license="LGPLv3",
packages=find_packages(exclude=["doc", "tests"]),
python_requires=">=3.7",
install_requires=[
"appdirs",
"beautifulsoup4",
"entsoe-py",
"ipython",
"lxml",
"matplotlib",
"numpy",
"pandas",
"pyarrow",
"quandl",
"requests",
"scipy",
"xlrd",
],
extras_require={
"dev": [
"black",
"iso3166",
"isort",
"mypy",
"plotly",
"pytest-cov",
"pytest-mock",
"pytest-responsemock",
"pytest",
]
},
include_package_data=True,
package_data={"elmada": ["*.parquet", "*.csv", "*.txt", "*xls"]},
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Scientific/Engineering",
"Topic :: Software Development :: Libraries :: Python Modules",
],
keywords=["energy market data", "energy systems", "carbon emission factors", "demand response"],
)