forked from SavinaRoja/DMXEnttecPro
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
32 lines (26 loc) · 970 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
# coding: utf-8
from setuptools import setup
requires = ['pyserial']
def load_readme():
with open('README.md') as f:
readme = f.read()
return readme
setup(name='DMXEnttecPro',
version='0.4',
description='Python control of the Enttec DMX USB Pro',
author='Paul Barton',
author_email='pablo.barton@gmail.com',
license='GPL3',
package_dir={'': 'src'},
packages=['DMXEnttecPro'],
install_requires=requires,
long_description=load_readme(),
long_description_content_type='text/markdown',
classifiers=["Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Development Status :: 4 - Beta",
]
)