forked from yuppity/unifi-video-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
29 lines (24 loc) · 755 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
#!/usr/bin/env python
import setuptools
pypi_package_name = 'unifi-video'
with open('unifi_video/_version.py', 'r') as f:
exec(f.read())
with open('README.md', 'r') as fh:
readme = fh.read()
setuptools.setup(
name=pypi_package_name,
version=__version__,
author='yuppity',
author_email='yuppity_pypi@wubbalubba.com',
description='Python API for UniFi Video',
long_description=readme,
long_description_content_type='text/markdown',
url='https://github.com/yuppity/unifi-video-api',
packages=['unifi_video'],
classifiers=[
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
],
python_requires='>=2.7',
)