-
Notifications
You must be signed in to change notification settings - Fork 22
/
setup.py
54 lines (48 loc) · 1.52 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
#!/usr/bin/python
# coding: utf8
import os
import sys
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
if sys.argv[-1] == 'publish':
os.system('python setup.py sdist bdist_wheel upload')
sys.exit()
version = '0.0.3'
requires = ['requests>=2.3.0', 'humanize>=0.5']
with open('README.md') as f:
readme = f.read()
with open('LICENSE') as f:
license = f.read()
setup(
name='gopro',
version=version,
description="GoPro Camera - Python module made easy.",
long_description=readme,
author='Denis Carriere',
author_email='carriere.denis@gmail.com',
url='https://github.com/DenisCarriere/gopro',
download_url='https://github.com/DenisCarriere/gopro/tarball/master',
license=license,
packages=['gopro'],
package_data={'': ['LICENSE', 'README.md']},
package_dir={'gopro': 'gopro'},
include_package_data=True,
install_requires=requires,
zip_safe=False,
keywords='gopro camera hero black',
classifiers=(
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Topic :: Internet',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Scientific/Engineering :: GIS',
'Topic :: Software Development :: Libraries :: Python Modules'
),
)