forked from ali1234/pymtpd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
28 lines (27 loc) · 835 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
from setuptools import setup
setup(
name='mtp',
keywords='linux usb gadget functionfs mtp',
version='0.1',
author='Alistair Buxton',
author_email='[email protected]',
url='http://github.com/ali1234/pymtpd',
license='GPLv3+',
platforms=['linux'],
packages=['mtp'],
install_requires=[
'functionfs', 'libaio', 'construct>=2.8.0,<2.9.0', 'inotify-simple'
],
entry_points={
'console_scripts': [
'pymtpd = mtp.__main__:main'
]
},
classifiers=[
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3',
'Topic :: Software Development :: Libraries',
'Topic :: System :: Hardware :: Hardware Drivers',
],
)