-
Notifications
You must be signed in to change notification settings - Fork 37
/
Copy pathsetup.py
54 lines (49 loc) · 1.85 KB
/
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
import os
from setuptools import setup, find_packages
from pip.req import parse_requirements
def read(filename):
return open(os.path.join(os.path.dirname(__file__), filename)).read()
install_requirements = [
str(r.req)
for r in parse_requirements('requirements.txt', session=False)
]
test_requirements = [
str(r.req)
for r in parse_requirements('tests/requirements.txt', session=False)
]
setup(
author_email='[email protected]',
author='Luis Mario Domenzain',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Intended Audience :: End Users/Desktop',
'Intended Audience :: Other Audience',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Home Automation',
'Topic :: Multimedia',
'Topic :: Multimedia :: Graphics',
'Topic :: Multimedia :: Graphics :: Capture',
'Topic :: Multimedia :: Graphics :: Capture :: Digital Camera',
'Topic :: Scientific/Engineering',
'Topic :: Software Development :: Libraries',
'Topic :: System :: Filesystems',
'Topic :: System :: Hardware',
'Topic :: System :: Hardware :: Hardware Drivers',
],
description='A pure Python implementation of Picture Transfer Protocol.',
install_requires=install_requirements,
keywords='ptp mtp usb ip ptpip ptpusb parrot canon nikon microsoft',
license='BSD-3-Clause',
long_description=read('README.md'),
name='ptpy',
packages=find_packages(exclude=['tests', 'examples']),
setup_requires=['pytest-runner'],
tests_require=test_requirements,
url='https://github.com/Parrot-Developers/sequoia-ptpy',
version='0.1.0',
)