exploitfarm 0.0.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,14 @@
1
+ Metadata-Version: 2.1
2
+ Name: exploitfarm
3
+ Version: 0.0.0
4
+ Summary: Exploit Farm clinet
5
+ Home-page: https://github.com/pwnzer0tt1/exploitfarm
6
+ Author: Pwnzer0tt1
7
+ Author-email: pwnzer0tt1@poliba.it
8
+ Classifier: Programming Language :: Python :: 3
9
+ Classifier: License :: OSI Approved :: MIT License
10
+ Classifier: Operating System :: OS Independent
11
+ Requires-Python: >=3.10
12
+ Description-Content-Type: text/markdown
13
+
14
+ # Exploit Farm python library
@@ -0,0 +1 @@
1
+ # Exploit Farm python library
@@ -0,0 +1 @@
1
+ __version__ = "0.0.0"
@@ -0,0 +1,14 @@
1
+ Metadata-Version: 2.1
2
+ Name: exploitfarm
3
+ Version: 0.0.0
4
+ Summary: Exploit Farm clinet
5
+ Home-page: https://github.com/pwnzer0tt1/exploitfarm
6
+ Author: Pwnzer0tt1
7
+ Author-email: pwnzer0tt1@poliba.it
8
+ Classifier: Programming Language :: Python :: 3
9
+ Classifier: License :: OSI Approved :: MIT License
10
+ Classifier: Operating System :: OS Independent
11
+ Requires-Python: >=3.10
12
+ Description-Content-Type: text/markdown
13
+
14
+ # Exploit Farm python library
@@ -0,0 +1,7 @@
1
+ README.md
2
+ setup.py
3
+ exploitfarm/__init__.py
4
+ exploitfarm.egg-info/PKG-INFO
5
+ exploitfarm.egg-info/SOURCES.txt
6
+ exploitfarm.egg-info/dependency_links.txt
7
+ exploitfarm.egg-info/top_level.txt
@@ -0,0 +1 @@
1
+ exploitfarm
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1,23 @@
1
+ import setuptools
2
+
3
+ with open("README.md", "r", encoding="utf-8") as fh:
4
+ long_description = fh.read()
5
+
6
+ setuptools.setup(
7
+ name="exploitfarm",
8
+ version="0.0.0",
9
+ author="Pwnzer0tt1",
10
+ author_email="pwnzer0tt1@poliba.it",
11
+ install_requires=[],
12
+ description="Exploit Farm clinet",
13
+ long_description=long_description,
14
+ long_description_content_type="text/markdown",
15
+ url="https://github.com/pwnzer0tt1/exploitfarm",
16
+ packages=setuptools.find_packages(),
17
+ classifiers=[
18
+ "Programming Language :: Python :: 3",
19
+ "License :: OSI Approved :: MIT License",
20
+ "Operating System :: OS Independent",
21
+ ],
22
+ python_requires='>=3.10',
23
+ )