forked from BaQs/pyEzviz
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
31 lines (29 loc) · 787 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.1.5.5",
license='Apache Software License',
author='Pierre Ourdouille',
author_email='baqs@users.github.com',
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(include=['pyezviz']),
setup_requires=[
'requests',
'setuptools'
],
install_requires=[
'requests',
'fake_useragent',
'uuid',
'pandas'
],
entry_points={
'console_scripts': [
'pyezviz = pyezviz.__main__:main'
]
}
)