-
Notifications
You must be signed in to change notification settings - Fork 48
/
setup.py
31 lines (29 loc) · 809 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
30
31
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name='pyezviz',
version="0.2.2.3",
license='Apache Software License 2.0',
author='Pierre Ourdouille',
author_email='[email protected]',
description='Pilot your Ezviz cameras',
long_description="Pilot your Ezviz cameras with this module. Please view readme on github",
url='http://github.com/baqs/pyEzviz/',
packages=setuptools.find_packages(),
setup_requires=[
'requests',
'setuptools'
],
install_requires=[
'requests',
'pandas',
'paho-mqtt',
'xmltodict',
'pycryptodome'
],
entry_points={
'console_scripts': ['pyezviz = pyezviz.__main__:main']
},
python_requires = '>=3.6'
)