dde-agent-lib 0.1__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.
- dde-agent-lib-0.1/PKG-INFO +17 -0
- dde-agent-lib-0.1/README.md +1 -0
- dde-agent-lib-0.1/dde_agent_lib.egg-info/PKG-INFO +17 -0
- dde-agent-lib-0.1/dde_agent_lib.egg-info/SOURCES.txt +6 -0
- dde-agent-lib-0.1/dde_agent_lib.egg-info/dependency_links.txt +1 -0
- dde-agent-lib-0.1/dde_agent_lib.egg-info/top_level.txt +1 -0
- dde-agent-lib-0.1/setup.cfg +4 -0
- dde-agent-lib-0.1/setup.py +23 -0
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: dde-agent-lib
|
|
3
|
+
Version: 0.1
|
|
4
|
+
Summary: geogpt agent library
|
|
5
|
+
Home-page:
|
|
6
|
+
Author: geogpt
|
|
7
|
+
Author-email: zhuquezhitu@zhejianglab.com
|
|
8
|
+
License: UNKNOWN
|
|
9
|
+
Platform: UNKNOWN
|
|
10
|
+
Classifier: Programming Language :: Python :: 3
|
|
11
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
12
|
+
Classifier: Operating System :: OS Independent
|
|
13
|
+
Requires-Python: >=3.6
|
|
14
|
+
Description-Content-Type: text/markdown
|
|
15
|
+
|
|
16
|
+
geogpt agent library
|
|
17
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
geogpt agent library
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: dde-agent-lib
|
|
3
|
+
Version: 0.1
|
|
4
|
+
Summary: geogpt agent library
|
|
5
|
+
Home-page:
|
|
6
|
+
Author: geogpt
|
|
7
|
+
Author-email: zhuquezhitu@zhejianglab.com
|
|
8
|
+
License: UNKNOWN
|
|
9
|
+
Platform: UNKNOWN
|
|
10
|
+
Classifier: Programming Language :: Python :: 3
|
|
11
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
12
|
+
Classifier: Operating System :: OS Independent
|
|
13
|
+
Requires-Python: >=3.6
|
|
14
|
+
Description-Content-Type: text/markdown
|
|
15
|
+
|
|
16
|
+
geogpt agent library
|
|
17
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
from setuptools import setup, find_packages
|
|
2
|
+
|
|
3
|
+
setup(
|
|
4
|
+
name='dde-agent-lib',
|
|
5
|
+
version='0.1',
|
|
6
|
+
packages=find_packages(),
|
|
7
|
+
install_requires=[
|
|
8
|
+
|
|
9
|
+
],
|
|
10
|
+
# 其他元数据
|
|
11
|
+
author='geogpt',
|
|
12
|
+
author_email='zhuquezhitu@zhejianglab.com',
|
|
13
|
+
description='geogpt agent library',
|
|
14
|
+
long_description=open('README.md').read(),
|
|
15
|
+
long_description_content_type='text/markdown',
|
|
16
|
+
url='',
|
|
17
|
+
classifiers=[
|
|
18
|
+
'Programming Language :: Python :: 3',
|
|
19
|
+
'License :: OSI Approved :: MIT License',
|
|
20
|
+
'Operating System :: OS Independent',
|
|
21
|
+
],
|
|
22
|
+
python_requires='>=3.6',
|
|
23
|
+
)
|