aibrainjacker 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,13 @@
1
+ Metadata-Version: 2.4
2
+ Name: aibrainjacker
3
+ Version: 0.0.1
4
+ Summary: Decker Ops -- coming soon.
5
+ Home-page: https://github.com/DeckerOps
6
+ Author: DeckerOps
7
+ Author-email: decker.ops@gmail.com
8
+ Requires-Python: >=3.8
9
+ Dynamic: author
10
+ Dynamic: author-email
11
+ Dynamic: home-page
12
+ Dynamic: requires-python
13
+ Dynamic: summary
@@ -0,0 +1,2 @@
1
+ """Decker Ops � coming soon."""
2
+ __version__ = "0.0.1"
@@ -0,0 +1,13 @@
1
+ Metadata-Version: 2.4
2
+ Name: aibrainjacker
3
+ Version: 0.0.1
4
+ Summary: Decker Ops -- coming soon.
5
+ Home-page: https://github.com/DeckerOps
6
+ Author: DeckerOps
7
+ Author-email: decker.ops@gmail.com
8
+ Requires-Python: >=3.8
9
+ Dynamic: author
10
+ Dynamic: author-email
11
+ Dynamic: home-page
12
+ Dynamic: requires-python
13
+ Dynamic: summary
@@ -0,0 +1,6 @@
1
+ setup.py
2
+ aibrainjacker/__init__.py
3
+ aibrainjacker.egg-info/PKG-INFO
4
+ aibrainjacker.egg-info/SOURCES.txt
5
+ aibrainjacker.egg-info/dependency_links.txt
6
+ aibrainjacker.egg-info/top_level.txt
@@ -0,0 +1 @@
1
+ aibrainjacker
@@ -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
+ setup(
3
+ name="aibrainjacker",
4
+ version="0.0.1",
5
+ packages=find_packages(),
6
+ description="Decker Ops -- coming soon.",
7
+ author="DeckerOps",
8
+ author_email="decker.ops@gmail.com",
9
+ url="https://github.com/DeckerOps",
10
+ python_requires=">=3.8",
11
+ )