pyimouapi 1.0.1__tar.gz → 1.0.2__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {pyimouapi-1.0.1 → pyimouapi-1.0.2}/PKG-INFO +3 -1
- {pyimouapi-1.0.1 → pyimouapi-1.0.2}/pyimouapi.egg-info/PKG-INFO +3 -1
- {pyimouapi-1.0.1 → pyimouapi-1.0.2}/pyimouapi.egg-info/SOURCES.txt +1 -0
- pyimouapi-1.0.2/pyimouapi.egg-info/requires.txt +2 -0
- {pyimouapi-1.0.1 → pyimouapi-1.0.2}/setup.py +5 -1
- {pyimouapi-1.0.1 → pyimouapi-1.0.2}/LICENSE +0 -0
- {pyimouapi-1.0.1 → pyimouapi-1.0.2}/README.md +0 -0
- {pyimouapi-1.0.1 → pyimouapi-1.0.2}/pyimouapi/__init__.py +0 -0
- {pyimouapi-1.0.1 → pyimouapi-1.0.2}/pyimouapi/const.py +0 -0
- {pyimouapi-1.0.1 → pyimouapi-1.0.2}/pyimouapi/device.py +0 -0
- {pyimouapi-1.0.1 → pyimouapi-1.0.2}/pyimouapi/exceptions.py +0 -0
- {pyimouapi-1.0.1 → pyimouapi-1.0.2}/pyimouapi/openapi.py +0 -0
- {pyimouapi-1.0.1 → pyimouapi-1.0.2}/pyimouapi.egg-info/dependency_links.txt +0 -0
- {pyimouapi-1.0.1 → pyimouapi-1.0.2}/pyimouapi.egg-info/top_level.txt +0 -0
- {pyimouapi-1.0.1 → pyimouapi-1.0.2}/setup.cfg +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: pyimouapi
|
|
3
|
-
Version: 1.0.
|
|
3
|
+
Version: 1.0.2
|
|
4
4
|
Summary: A package for imou open api
|
|
5
5
|
Home-page: https://github.com/Imou-OpenPlatform/Py-Imou-Open-Api
|
|
6
6
|
Author: Imou-OpenPlatform
|
|
@@ -12,6 +12,8 @@ Classifier: Programming Language :: Python :: 3
|
|
|
12
12
|
Classifier: Topic :: Software Development :: Libraries
|
|
13
13
|
Description-Content-Type: text/markdown
|
|
14
14
|
License-File: LICENSE
|
|
15
|
+
Requires-Dist: aiohttp==3.11.0
|
|
16
|
+
Requires-Dist: async-timeout==5.0.1
|
|
15
17
|
|
|
16
18
|
# Py-Imou-Open-Api
|
|
17
19
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: pyimouapi
|
|
3
|
-
Version: 1.0.
|
|
3
|
+
Version: 1.0.2
|
|
4
4
|
Summary: A package for imou open api
|
|
5
5
|
Home-page: https://github.com/Imou-OpenPlatform/Py-Imou-Open-Api
|
|
6
6
|
Author: Imou-OpenPlatform
|
|
@@ -12,6 +12,8 @@ Classifier: Programming Language :: Python :: 3
|
|
|
12
12
|
Classifier: Topic :: Software Development :: Libraries
|
|
13
13
|
Description-Content-Type: text/markdown
|
|
14
14
|
License-File: LICENSE
|
|
15
|
+
Requires-Dist: aiohttp==3.11.0
|
|
16
|
+
Requires-Dist: async-timeout==5.0.1
|
|
15
17
|
|
|
16
18
|
# Py-Imou-Open-Api
|
|
17
19
|
|
|
@@ -2,7 +2,7 @@ from setuptools import setup, find_packages
|
|
|
2
2
|
|
|
3
3
|
setup(
|
|
4
4
|
name='pyimouapi',
|
|
5
|
-
version='1.0.
|
|
5
|
+
version='1.0.2',
|
|
6
6
|
packages=find_packages(),
|
|
7
7
|
description='A package for imou open api',
|
|
8
8
|
# long_description=open('README.md').read(),
|
|
@@ -13,6 +13,10 @@ setup(
|
|
|
13
13
|
author='Imou-OpenPlatform',
|
|
14
14
|
author_email='cloud_openteam_service@imou.com',
|
|
15
15
|
license='MIT',
|
|
16
|
+
install_requires=[
|
|
17
|
+
'aiohttp==3.11.0',
|
|
18
|
+
'async-timeout==5.0.1'
|
|
19
|
+
],
|
|
16
20
|
classifiers=[
|
|
17
21
|
'Intended Audience :: Developers',
|
|
18
22
|
'Operating System :: OS Independent',
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|