forked from gluap/pyduofern
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
37 lines (28 loc) · 995 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
36
37
# coding=utf-8
from setuptools import setup
from pyduofern import __version__ as version
setup(name='pyduofern',
version=version,
description='Library for controlling Rademacher DuoFern actors using python. Requires the Rademacher'
'Duofern USB Stick Art.-Nr.: 70000093',
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: GNU General Public License v2 (GPLv2)',
'Programming Language :: Python :: 3.4',
],
url='https://github.com/gluap/pyduofern',
author='Paul Görgen',
author_email='[email protected]',
license='GPL-2.0',
packages=['pyduofern'],
install_requires=[
'pyserial', 'pyserial-asyncio'
],
zip_safe=False,
include_package_data=False,
tests_require=[
'tox', 'pytest', 'pytest-asyncio'
],
scripts=["scripts/duofern_cli.py"],
long_description=open('README.rst', 'r').read()
)