forked from wishful-project/controller
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
20 lines (17 loc) · 680 Bytes
/
setup.py
File metadata and controls
20 lines (17 loc) · 680 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
from setuptools import setup, find_packages
def readme():
with open('README.md') as f:
return f.read()
setup(
name='wishful_controller',
version='0.1.0',
packages=find_packages(),
url='http://www.wishful-project.eu/software',
license='',
author='Piotr Gawlowicz, Mikolaj Chwalisz',
author_email='{gawlowicz, chwalisz}@tkn.tu-berlin.de',
description='Unified Programming Interfaces (UPIs) Framework',
long_description='Implementation of a wireless controller using the unified programming interfaces (UPIs) of the Wishful project.',
keywords='wireless control',
install_requires=['pyzmq', 'gevent', 'decorator', 'dill']
)