-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathsetup.py
29 lines (27 loc) · 847 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
from setuptools import setup
setup(name="sonypy",
version='0.1',
description='Remote Control of Sony Cameras',
long_description='',
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
],
keywords='sony camera remote control a7 nex',
url='http://github.com/storborg/sonypy',
author='Scott Torborg',
author_email='[email protected]',
install_requires=[
'requests',
# These are for tests.
'coverage',
'nose>=1.1',
'nose-cover3',
],
license='MIT',
packages=['sonypy'],
test_suite='nose.collector',
tests_require=['nose'],
zip_safe=False)