-
Notifications
You must be signed in to change notification settings - Fork 51
/
setup.py
executable file
·28 lines (24 loc) · 905 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
# Copyright (c) 2016-2022 John Mihalic <https://github.com/mezz64>
# Licensed under the MIT license.
# Used this guide to create module
# http://peterdowns.com/posts/first-time-with-pypi.html
# git tag 0.1 -m "0.1 release"
# git push --tags origin master
#
# Upload to PyPI Live
# python setup.py register -r pypi
# python setup.py sdist upload -r pypi
from distutils.core import setup
setup(
name='pyHik',
packages=['pyhik'],
version='0.3.2',
description='Provides a python api to interact with a Hikvision camera event stream and toggle motion detection.',
author='John Mihalic',
author_email='[email protected]',
license='MIT',
url='https://github.com/mezz64/pyhik',
download_url='https://github.com/mezz64/pyhik/tarball/0.3.2',
keywords=['hik', 'hikvision', 'event stream', 'events', 'api wrapper', 'homeassistant'],
classifiers=[],
)