-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
36 lines (33 loc) · 904 Bytes
/
setup.py
File metadata and controls
36 lines (33 loc) · 904 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
27
28
29
30
31
32
33
34
35
36
#!/usr/bin/env python
try:
from setuptools import setup
except ImportError:
import distribute_setup
distribute_setup.use_setuptools()
from setuptools import setup
setup(
name='ap1302py',
version='0.1.0',
license='GPLv2',
packages=['ap1302py'],
package_dir={'ap1302py': 'ap1302py'},
entry_points={
'console_scripts': [
'vdlg_ap1302 = ap1302py.__main__:main',
]
},
install_requires=[
'python_periphery>=2.1.0',
'pytimerfd>=1.2',
],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License v2 (GPLv2)',
'Operating System :: Linux',
'Programming Language :: Python :: 3',
'Topic :: Utilities',
'Topic :: Multimedia :: Video',
],
)