-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
46 lines (40 loc) · 1.2 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
"""The setup script."""
from setuptools import setup, Extension, find_packages
with open('README.md') as readme_file:
readme = readme_file.read()
requirements = [
'boto3',
's3-tar',
'pyyaml',
'Pillow',
'flask',
'pysondb-v2',
]
setup_requirements = [ ]
test_requirements = [ ]
exec_scripts=['scripts/hk-aws-tool.py']
setup(
author="Roman Pavlyuk",
author_email='roman.pavlyuk@gmail.com',
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: GPL v3.0',
'Natural Language :: English',
'Programming Language :: Python :: 3.7',
],
description='A set of tools to manage files stored by Hikvision devices on the file share',
install_requires=requirements,
license='GPLv3',
long_description=readme,
include_package_data=True,
long_description_content_type="text/markdown",
keywords='hikvision camera aws python cgi interface',
name='hkawstoolkit',
packages=['hkawstoolkit'],
setup_requires=setup_requirements,
url='https://github.com/rpavlyuk/hikvision-aws-toolkit',
version='1.0',
zip_safe=False,
scripts=exec_scripts
)