flatfox-api-python 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,11 @@
1
+ Metadata-Version: 2.4
2
+ Name: flatfox-api-python
3
+ Version: 0.1
4
+ Summary: Flatfox API Python client (PoC placeholder)
5
+ Author: Security Researcher
6
+ License: MIT
7
+ Requires-Python: >=3.6
8
+ Dynamic: author
9
+ Dynamic: license
10
+ Dynamic: requires-python
11
+ Dynamic: summary
@@ -0,0 +1 @@
1
+ print("Flatfox API placeholder PoC package")
@@ -0,0 +1,11 @@
1
+ Metadata-Version: 2.4
2
+ Name: flatfox-api-python
3
+ Version: 0.1
4
+ Summary: Flatfox API Python client (PoC placeholder)
5
+ Author: Security Researcher
6
+ License: MIT
7
+ Requires-Python: >=3.6
8
+ Dynamic: author
9
+ Dynamic: license
10
+ Dynamic: requires-python
11
+ Dynamic: summary
@@ -0,0 +1,6 @@
1
+ setup.py
2
+ flatfox_api_python/__init__.py
3
+ flatfox_api_python.egg-info/PKG-INFO
4
+ flatfox_api_python.egg-info/SOURCES.txt
5
+ flatfox_api_python.egg-info/dependency_links.txt
6
+ flatfox_api_python.egg-info/top_level.txt
@@ -0,0 +1 @@
1
+ flatfox_api_python
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1,11 @@
1
+ from setuptools import setup, find_packages
2
+
3
+ setup(
4
+ name="flatfox-api-python",
5
+ version="0.1",
6
+ packages=find_packages(),
7
+ description="Flatfox API Python client (PoC placeholder)",
8
+ author="Security Researcher",
9
+ license="MIT",
10
+ python_requires=">=3.6",
11
+ )