forked from c0z3n/pySimpleDMX
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (24 loc) · 747 Bytes
/
setup.py
File metadata and controls
26 lines (24 loc) · 747 Bytes
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
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
setup(
name="pysimpledmx",
version="0.2.0",
description="simple dmx control for the Enttec DMX USB Pro",
license="GPLV3",
author="c0z3n",
url="https://github.com/c0z3n/pySimpleDMX",
packages=find_packages(),
install_requires=[
"pyserial"
],
long_description=open("README.md").read(),
classifiers=[
"Programming Language :: Python",
'Programming Language :: Python :: 2',
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
"Intended Audience :: Other Audience",
"Topic :: Artistic Software",
]
)