-
Notifications
You must be signed in to change notification settings - Fork 61
/
setup.py
44 lines (38 loc) · 1.21 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
import os
try:
from setuptools import setup, find_packages
except ImportError:
from distutils.core import setup, find_packages
here = os.path.abspath(os.path.dirname(__file__))
try:
README = open(os.path.join(here, 'README.md')).read()
except IOError:
README = 'https://github.com/Bloodevil/sony_camera_api/blob/master/README.md'
version = '0.1.12'
install_requires = [
]
test_requirements = ['six>=1.10.0,<2']
setup(name='pysony',
version = version,
description = "Sony Camera Remote API for python",
long_description = README,
author='Yeaji Shin',
author_email='yeahjishin@gmail.com',
url='https://github.com/Bloodevil/sony_camera_api',
download_url='https://github.com/Bloodevil/sony_camera_api/tarball/%s'%version,
license='MIT',
install_requires=install_requires,
packages=find_packages('src'),
package_dir = {'': 'src'},
test_suite='tests',
tests_require=test_requirements,
py_modules=["pysony"],
keywords=['sony', 'camera', 'remote', 'api'],
classifiers=[
'License :: OSI Approved :: MIT License',
# topic
# environment ...
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
],
)