-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
33 lines (25 loc) · 901 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
from distutils.core import setup
import glob
import sys
import os
setup(name = "pycyborg",
version = "1.0",
description = "AMBX Cyborg Gaming Lights Library",
author = "O. Schacher",
url='https://github.com/gryphius/pycyborg',
download_url='http://github.com/gryphius/pycyborg/tarball/master',
author_email = "[email protected]",
requires = ['pyusb(>=1.0)'],
packages = ['pycyborg'],
long_description = """AMBX Cyborg Gaming Lights Library""" ,
data_files=[
('/etc/udev/rules.d',['doc/80-cyborg.rules']),
],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: No Input/Output (Daemon)',
'License :: OSI Approved :: Apache Software License',
'Operating System :: POSIX',
'Programming Language :: Python',
],
)