-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
36 lines (33 loc) · 1.02 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
"""
CARPI REDIS DATA BUS
(C) 2018, Raphael "rGunti" Guntersweiler
Licensed under MIT
"""
from setuptools import setup
with open('README.md', 'r') as f:
long_description = f.read()
setup(name='carpi-dashdaemon',
version='0.1.2',
description='Daemon that processes data from different sources for a digital car dashboard.',
long_description=long_description,
url='https://github.com/rGunti/CarPi-DashDaemon',
keywords='carpi dash daemon',
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.6'
],
author='Raphael "rGunti" Guntersweiler',
author_email='[email protected]',
license='MIT',
packages=['dashdaemon'],
install_requires=[
'wheel',
'carpi-commons',
'carpi-redisdatabus',
'carpi-daemoncommons',
'carpi-gpsdaemon',
'carpi-obddaemon',
],
zip_safe=False,
include_package_data=True)