forked from tchellomello/python-amcrest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
31 lines (27 loc) · 1 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
#!/usr/bin/env python
from setuptools import setup, find_packages
def readme():
with open('README.rst') as desc:
return desc.read()
setup(name='amcrest',
version='1.2.4',
description='Python wrapper implementation for Amcrest cameras.',
long_description=readme(),
author='Douglas Schilling Landgraf, Marcelo Moreira de Mello',
author_email='[email protected], [email protected]',
url='http://github.com/tchellomello/python-amcrest',
license='GPLv2',
install_requires=['requests', 'argcomplete'],
package_dir={'': 'src'},
packages=find_packages('src'),
include_package_data=True,
test_suite='tests',
scripts=['cli/amcrest-cli', 'tui/amcrest-tui'],
zip_safe=True,
keywords="amcrest camera python",
classifiers=[
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
])