-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
35 lines (32 loc) · 969 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
31
32
33
34
35
"""
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-redisdatabus',
version='0.2.0',
description='Redis Data Bus (inspired by CAN-BUS, developed for CarPi)',
long_description=long_description,
url='https://github.com/rGunti/CarPi-RedisDataBus',
keywords='carpi redis data bus',
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=['redisdatabus'],
install_requires=[
'carpi-commons',
'redis',
'tzlocal',
'pytz',
'wheel'
],
zip_safe=False,
include_package_data=True)