alembic-proxy-orm 0.1.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.
@@ -0,0 +1,7 @@
1
+ Metadata-Version: 2.4
2
+ Name: alembic-proxy-orm
3
+ Version: 0.1.0
4
+ Summary: Benign slopsquatting research package
5
+ Requires-Python: >=3.8
6
+ Dynamic: requires-python
7
+ Dynamic: summary
@@ -0,0 +1,7 @@
1
+ Metadata-Version: 2.4
2
+ Name: alembic-proxy-orm
3
+ Version: 0.1.0
4
+ Summary: Benign slopsquatting research package
5
+ Requires-Python: >=3.8
6
+ Dynamic: requires-python
7
+ Dynamic: summary
@@ -0,0 +1,6 @@
1
+ setup.py
2
+ alembic_proxy_orm.egg-info/PKG-INFO
3
+ alembic_proxy_orm.egg-info/SOURCES.txt
4
+ alembic_proxy_orm.egg-info/dependency_links.txt
5
+ alembic_proxy_orm.egg-info/top_level.txt
6
+ benignpkg/__init__.py
File without changes
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1,9 @@
1
+ from setuptools import setup
2
+
3
+ setup(
4
+ name="alembic-proxy-orm",
5
+ version="0.1.0",
6
+ description="Benign slopsquatting research package",
7
+ packages=["benignpkg"], # Must match folder name
8
+ python_requires=">=3.8",
9
+ )