bytedance-apex 0.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,22 @@
1
+ Metadata-Version: 2.1
2
+ Name: bytedance_apex
3
+ Version: 0.0.1
4
+ Summary: This is a reserved placeholder package to mitigate dependency confusion risks.
5
+ Home-page: https://code.byted.org/infra/bytedance_apex
6
+ Author: Your Name
7
+ Author-email: your.email@example.com
8
+ License: UNKNOWN
9
+ Description: # pypi_example
10
+
11
+ This is an example Python package registered as a placeholder to prevent dependency confusion attacks and ensure supply chain security.
12
+
13
+
14
+ Platform: UNKNOWN
15
+ Classifier: Programming Language :: Python :: 3
16
+ Classifier: License :: OSI Approved :: MIT License
17
+ Classifier: Operating System :: OS Independent
18
+ Classifier: Topic :: Software Development :: Libraries
19
+ Classifier: Intended Audience :: Developers
20
+ Classifier: Development Status :: 7 - Inactive
21
+ Requires-Python: >=3.6
22
+ Description-Content-Type: text/markdown
@@ -0,0 +1,4 @@
1
+ # pypi_example
2
+
3
+ This is an example Python package registered as a placeholder to prevent dependency confusion attacks and ensure supply chain security.
4
+
@@ -0,0 +1,22 @@
1
+ Metadata-Version: 2.1
2
+ Name: bytedance-apex
3
+ Version: 0.0.1
4
+ Summary: This is a reserved placeholder package to mitigate dependency confusion risks.
5
+ Home-page: https://code.byted.org/infra/bytedance_apex
6
+ Author: Your Name
7
+ Author-email: your.email@example.com
8
+ License: UNKNOWN
9
+ Description: # pypi_example
10
+
11
+ This is an example Python package registered as a placeholder to prevent dependency confusion attacks and ensure supply chain security.
12
+
13
+
14
+ Platform: UNKNOWN
15
+ Classifier: Programming Language :: Python :: 3
16
+ Classifier: License :: OSI Approved :: MIT License
17
+ Classifier: Operating System :: OS Independent
18
+ Classifier: Topic :: Software Development :: Libraries
19
+ Classifier: Intended Audience :: Developers
20
+ Classifier: Development Status :: 7 - Inactive
21
+ Requires-Python: >=3.6
22
+ Description-Content-Type: text/markdown
@@ -0,0 +1,6 @@
1
+ README.md
2
+ setup.py
3
+ bytedance_apex.egg-info/PKG-INFO
4
+ bytedance_apex.egg-info/SOURCES.txt
5
+ bytedance_apex.egg-info/dependency_links.txt
6
+ bytedance_apex.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="bytedance_apex",
5
+ version="0.0.1",
6
+ packages=find_packages(),
7
+ description="This is a reserved placeholder package to mitigate dependency confusion risks.",
8
+ long_description=open("README.md", encoding="utf-8").read(),
9
+ long_description_content_type="text/markdown",
10
+ author="Your Name",
11
+ author_email="your.email@example.com",
12
+ url="https://code.byted.org/infra/bytedance_apex",
13
+ classifiers=[
14
+ "Programming Language :: Python :: 3",
15
+ "License :: OSI Approved :: MIT License",
16
+ "Operating System :: OS Independent",
17
+ "Topic :: Software Development :: Libraries",
18
+ "Intended Audience :: Developers",
19
+ "Development Status :: 7 - Inactive",
20
+ ],
21
+ python_requires='>=3.6',
22
+ )
23
+