-
Notifications
You must be signed in to change notification settings - Fork 11
/
setup.py
44 lines (33 loc) · 1.05 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
37
38
39
40
41
42
43
44
# coding=utf-8
from setuptools import setup
from pyduofern import __version__ as version
test_deps = [
'tox', 'pytest<8', 'pytest-asyncio'
],
extras = {
'test': test_deps,
}
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=test_deps,
extras_require=extras,
scripts=["scripts/duofern_cli.py"],
long_description=open('README.rst', 'r').read()
)