-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (29 loc) · 742 Bytes
/
Copy pathsetup.py
File metadata and controls
31 lines (29 loc) · 742 Bytes
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
from setuptools import setup, find_packages
setup(
name='Demonstrator',
version='0.1.5',
packages=find_packages(),
url='',
license='MIT',
author='Daniel, Ben, Victor, Sohrab, Ruben, Jean-Paul',
author_email='',
package_data={'': ['*.txt', '*.PNG']},
include_package_data=True,
description='',
classifiers=[
"Programming Language :: Python :: 3",
"License :: MIT License",
"Operating System :: Raspberry Pi",
],
install_requires=[
'matplotlib',
'numpy',
'paho-mqtt',
'pvlib',
'pandas',
'requests',
'plotly',
'dash',
],
# install_requires=['peppercorn'] #what is needed minimally to run this
)