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.
@@ -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,6 @@
1
+ README.md
2
+ setup.py
3
+ dde_agent_lib.egg-info/PKG-INFO
4
+ dde_agent_lib.egg-info/SOURCES.txt
5
+ dde_agent_lib.egg-info/dependency_links.txt
6
+ dde_agent_lib.egg-info/top_level.txt
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -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
+ )