apollo-modules 7.0__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.
- apollo_modules-7.0/PKG-INFO +15 -0
- apollo_modules-7.0/README.md +1 -0
- apollo_modules-7.0/apollo_modules.egg-info/PKG-INFO +15 -0
- apollo_modules-7.0/apollo_modules.egg-info/SOURCES.txt +7 -0
- apollo_modules-7.0/apollo_modules.egg-info/dependency_links.txt +1 -0
- apollo_modules-7.0/apollo_modules.egg-info/requires.txt +1 -0
- apollo_modules-7.0/apollo_modules.egg-info/top_level.txt +1 -0
- apollo_modules-7.0/setup.cfg +4 -0
- apollo_modules-7.0/setup.py +23 -0
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: apollo_modules
|
|
3
|
+
Version: 7.0
|
|
4
|
+
Summary: This is a package including baidu apollo' proto modules
|
|
5
|
+
Home-page: https://github.com/yourusername/my_project
|
|
6
|
+
Author: MingfeiCheng
|
|
7
|
+
Author-email: snowbirds.mf@gmail.com
|
|
8
|
+
Classifier: Programming Language :: Python :: 3
|
|
9
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
10
|
+
Classifier: Operating System :: OS Independent
|
|
11
|
+
Requires-Python: >=3.6
|
|
12
|
+
Description-Content-Type: text/markdown
|
|
13
|
+
Requires-Dist: protobuf==3.20.1
|
|
14
|
+
|
|
15
|
+
Apollo Modules v7.0
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
Apollo Modules v7.0
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: apollo_modules
|
|
3
|
+
Version: 7.0
|
|
4
|
+
Summary: This is a package including baidu apollo' proto modules
|
|
5
|
+
Home-page: https://github.com/yourusername/my_project
|
|
6
|
+
Author: MingfeiCheng
|
|
7
|
+
Author-email: snowbirds.mf@gmail.com
|
|
8
|
+
Classifier: Programming Language :: Python :: 3
|
|
9
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
10
|
+
Classifier: Operating System :: OS Independent
|
|
11
|
+
Requires-Python: >=3.6
|
|
12
|
+
Description-Content-Type: text/markdown
|
|
13
|
+
Requires-Dist: protobuf==3.20.1
|
|
14
|
+
|
|
15
|
+
Apollo Modules v7.0
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
protobuf==3.20.1
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
from setuptools import setup, find_packages
|
|
2
|
+
|
|
3
|
+
setup(
|
|
4
|
+
name="apollo_modules", # Replace with your project name
|
|
5
|
+
version="7.0", # Initial version
|
|
6
|
+
author="MingfeiCheng",
|
|
7
|
+
author_email="snowbirds.mf@gmail.com",
|
|
8
|
+
description="This is a package including baidu apollo' proto modules",
|
|
9
|
+
long_description=open("README.md").read(),
|
|
10
|
+
long_description_content_type="text/markdown",
|
|
11
|
+
url="https://github.com/yourusername/my_project", # URL to your project
|
|
12
|
+
packages=find_packages(),
|
|
13
|
+
classifiers=[
|
|
14
|
+
"Programming Language :: Python :: 3",
|
|
15
|
+
"License :: OSI Approved :: MIT License", # Use your license here
|
|
16
|
+
"Operating System :: OS Independent",
|
|
17
|
+
],
|
|
18
|
+
python_requires=">=3.6", # Specify the Python version compatibility
|
|
19
|
+
install_requires=[
|
|
20
|
+
# Add dependencies here, e.g., 'requests', 'numpy'
|
|
21
|
+
'protobuf==3.20.1'
|
|
22
|
+
],
|
|
23
|
+
)
|