forked from joshvillbrandt/goprohero
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
36 lines (33 loc) · 901 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
30
31
32
33
34
35
36
#!/usr/bin/env python
from setuptools import setup
# auto-convert README.md
try:
import pypandoc
long_description = pypandoc.convert('README.md', 'rst')
except (ImportError, OSError):
# we'll just use the poorly formatted Markdown file instead
long_description = open('README.md').read()
setup(
name='goprohero',
version='0.2.6',
description='A Python library for controlling GoPro cameras over http.',
long_description=long_description,
url='https://github.com/joshvillbrandt/gopro',
author='Josh Villbrandt',
author_email='[email protected]',
license=open('LICENSE').read(),
packages=['goprohero'],
setup_requires=[
'tox',
'nose',
'flake8'
],
install_requires=[
'Pillow',
'wireless',
'colorama'
],
scripts=['scripts/goproctl'],
test_suite='tests',
zip_safe=False
)