forked from codeformuenster/klimawatch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
30 lines (29 loc) · 837 Bytes
/
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
from setuptools import find_packages, setup
setup(
name="Klimawatch",
description="Ein Open Data-Plattform zur Darstellung von kommunalen CO2-Emissionen und Schutzkonzepten",
version="0.1.1",
author="Code for Germany",
author_email="[email protected]",
url="https://klimawatch.de/",
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Operating System :: POSIX",
],
packages=find_packages(),
scripts=[],
python_requires="~=3.7",
install_requires=["pandas>=1.2.4", "plotly>=5.0.0", "numpy", "scipy"],
extras_require={
"dev": [
"black",
"docformatter",
"jupyter",
"pre-commit",
"pylama",
"pytest",
"rope",
],
},
)