forked from smartsenselab/sensecam-control
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
28 lines (25 loc) · 917 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
import setuptools
REQUIREMENTS = [line for line in open('requirements.txt').read().split('\n') if line != '']
VERSION = '0.1.0'
AUTHOR = 'Igor Dias'
EMAIL = '[email protected]'
setuptools.setup(
name='sensecam_control',
version=VERSION,
author=AUTHOR,
author_email=EMAIL,
license='MIT',
description='Implementation of python functions for control and configuration of Axis cameras using Vapix/Onvif.',
long_description=open('README.md').read(),
long_description_content_type="text/markdown",
packages=setuptools.find_packages(),
url="https://github.com/smartsenselab/sensecam-control",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
keywords=['ONVIF', 'vapix', 'camera'],
python_requires='>=3.6',
install_requires=REQUIREMENTS,
)