qlsdk2 0.1.0__tar.gz → 0.1.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.
- {qlsdk2-0.1.0 → qlsdk2-0.1.2}/PKG-INFO +14 -2
- {qlsdk2-0.1.0 → qlsdk2-0.1.2}/setup.py +5 -1
- {qlsdk2-0.1.0 → qlsdk2-0.1.2}/src/qlsdk/__init__.py +2 -3
- {qlsdk2-0.1.0 → qlsdk2-0.1.2}/src/qlsdk2.egg-info/PKG-INFO +14 -2
- {qlsdk2-0.1.0 → qlsdk2-0.1.2}/README.md +0 -0
- {qlsdk2-0.1.0 → qlsdk2-0.1.2}/setup.cfg +0 -0
- {qlsdk2-0.1.0 → qlsdk2-0.1.2}/src/qlsdk/ar4m/__init__.py +0 -0
- {qlsdk2-0.1.0 → qlsdk2-0.1.2}/src/qlsdk/ar4m/ar4m.py +0 -0
- {qlsdk2-0.1.0 → qlsdk2-0.1.2}/src/qlsdk/ar4m/ar4sdk.py +0 -0
- {qlsdk2-0.1.0 → qlsdk2-0.1.2}/src/qlsdk/ar4m/example.py +0 -0
- {qlsdk2-0.1.0 → qlsdk2-0.1.2}/src/qlsdk2.egg-info/SOURCES.txt +0 -0
- {qlsdk2-0.1.0 → qlsdk2-0.1.2}/src/qlsdk2.egg-info/dependency_links.txt +0 -0
- {qlsdk2-0.1.0 → qlsdk2-0.1.2}/src/qlsdk2.egg-info/requires.txt +0 -0
- {qlsdk2-0.1.0 → qlsdk2-0.1.2}/src/qlsdk2.egg-info/top_level.txt +0 -0
- {qlsdk2-0.1.0 → qlsdk2-0.1.2}/test/test_ar4m.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.2
|
|
2
2
|
Name: qlsdk2
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.2
|
|
4
4
|
Summary: SDK for quanlan device
|
|
5
5
|
Home-page: https://github.com/hehuajun/qlsdk
|
|
6
6
|
Author: hehuajun
|
|
@@ -10,7 +10,19 @@ Classifier: License :: OSI Approved :: MIT License
|
|
|
10
10
|
Classifier: Operating System :: OS Independent
|
|
11
11
|
Requires-Python: >=3.9
|
|
12
12
|
Description-Content-Type: text/markdown
|
|
13
|
+
Requires-Dist: loguru>=0.6.0
|
|
13
14
|
Provides-Extra: dev
|
|
15
|
+
Requires-Dist: pytest>=6.0; extra == "dev"
|
|
16
|
+
Requires-Dist: twine>=3.0; extra == "dev"
|
|
17
|
+
Dynamic: author
|
|
18
|
+
Dynamic: author-email
|
|
19
|
+
Dynamic: classifier
|
|
20
|
+
Dynamic: description
|
|
21
|
+
Dynamic: description-content-type
|
|
22
|
+
Dynamic: home-page
|
|
23
|
+
Dynamic: requires-dist
|
|
24
|
+
Dynamic: requires-python
|
|
25
|
+
Dynamic: summary
|
|
14
26
|
|
|
15
27
|
# qlsdk project
|
|
16
28
|
|
|
@@ -6,7 +6,7 @@ with open("README.md", "r") as fh:
|
|
|
6
6
|
|
|
7
7
|
setuptools.setup(
|
|
8
8
|
name="qlsdk2",
|
|
9
|
-
version="0.1.
|
|
9
|
+
version="0.1.2",
|
|
10
10
|
author="hehuajun",
|
|
11
11
|
author_email="hehuajun@eegion.com",
|
|
12
12
|
description="SDK for quanlan device",
|
|
@@ -23,6 +23,10 @@ setuptools.setup(
|
|
|
23
23
|
python_requires='>=3.9',
|
|
24
24
|
install_requires=open("requirements.txt").read().splitlines(),
|
|
25
25
|
include_package_data=True,
|
|
26
|
+
package_data={
|
|
27
|
+
"src/qlsdk/ar4m/libs": ["lib/*.dll"],
|
|
28
|
+
"":["*.txt", "*.md"]
|
|
29
|
+
},
|
|
26
30
|
# entry_points={
|
|
27
31
|
# 'console_scripts': [
|
|
28
32
|
# 'qlsdk-cli=qlsdk.cli:main', # 如果有命令行工具
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.2
|
|
2
2
|
Name: qlsdk2
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.2
|
|
4
4
|
Summary: SDK for quanlan device
|
|
5
5
|
Home-page: https://github.com/hehuajun/qlsdk
|
|
6
6
|
Author: hehuajun
|
|
@@ -10,7 +10,19 @@ Classifier: License :: OSI Approved :: MIT License
|
|
|
10
10
|
Classifier: Operating System :: OS Independent
|
|
11
11
|
Requires-Python: >=3.9
|
|
12
12
|
Description-Content-Type: text/markdown
|
|
13
|
+
Requires-Dist: loguru>=0.6.0
|
|
13
14
|
Provides-Extra: dev
|
|
15
|
+
Requires-Dist: pytest>=6.0; extra == "dev"
|
|
16
|
+
Requires-Dist: twine>=3.0; extra == "dev"
|
|
17
|
+
Dynamic: author
|
|
18
|
+
Dynamic: author-email
|
|
19
|
+
Dynamic: classifier
|
|
20
|
+
Dynamic: description
|
|
21
|
+
Dynamic: description-content-type
|
|
22
|
+
Dynamic: home-page
|
|
23
|
+
Dynamic: requires-dist
|
|
24
|
+
Dynamic: requires-python
|
|
25
|
+
Dynamic: summary
|
|
14
26
|
|
|
15
27
|
# qlsdk project
|
|
16
28
|
|
|
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
|
|
File without changes
|