reapsed 1.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.
- reapsed-1.0.0/PKG-INFO +23 -0
- reapsed-1.0.0/README.md +6 -0
- reapsed-1.0.0/reapsed.egg-info/PKG-INFO +23 -0
- reapsed-1.0.0/reapsed.egg-info/SOURCES.txt +6 -0
- reapsed-1.0.0/reapsed.egg-info/dependency_links.txt +1 -0
- reapsed-1.0.0/reapsed.egg-info/top_level.txt +1 -0
- reapsed-1.0.0/setup.cfg +4 -0
- reapsed-1.0.0/setup.py +18 -0
reapsed-1.0.0/PKG-INFO
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: reapsed
|
|
3
|
+
Version: 1.0.0
|
|
4
|
+
Summary: reapsed. made by g4 @callfowarding on cord
|
|
5
|
+
Author: g4
|
|
6
|
+
Author-email: meowmeow@1337.care
|
|
7
|
+
License: MIT
|
|
8
|
+
Requires-Python: >=3.6
|
|
9
|
+
Description-Content-Type: text/markdown
|
|
10
|
+
Dynamic: author
|
|
11
|
+
Dynamic: author-email
|
|
12
|
+
Dynamic: description
|
|
13
|
+
Dynamic: description-content-type
|
|
14
|
+
Dynamic: license
|
|
15
|
+
Dynamic: requires-python
|
|
16
|
+
Dynamic: summary
|
|
17
|
+
|
|
18
|
+
reapsed.
|
|
19
|
+
|
|
20
|
+
DISCORDS
|
|
21
|
+
g4 @callfowarding
|
|
22
|
+
|
|
23
|
+
JOIN /ANYBODY
|
reapsed-1.0.0/README.md
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: reapsed
|
|
3
|
+
Version: 1.0.0
|
|
4
|
+
Summary: reapsed. made by g4 @callfowarding on cord
|
|
5
|
+
Author: g4
|
|
6
|
+
Author-email: meowmeow@1337.care
|
|
7
|
+
License: MIT
|
|
8
|
+
Requires-Python: >=3.6
|
|
9
|
+
Description-Content-Type: text/markdown
|
|
10
|
+
Dynamic: author
|
|
11
|
+
Dynamic: author-email
|
|
12
|
+
Dynamic: description
|
|
13
|
+
Dynamic: description-content-type
|
|
14
|
+
Dynamic: license
|
|
15
|
+
Dynamic: requires-python
|
|
16
|
+
Dynamic: summary
|
|
17
|
+
|
|
18
|
+
reapsed.
|
|
19
|
+
|
|
20
|
+
DISCORDS
|
|
21
|
+
g4 @callfowarding
|
|
22
|
+
|
|
23
|
+
JOIN /ANYBODY
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
reapsed-1.0.0/setup.cfg
ADDED
reapsed-1.0.0/setup.py
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
from setuptools import setup, find_packages
|
|
2
|
+
|
|
3
|
+
with open("README.md", "r", encoding="utf-8") as f:
|
|
4
|
+
longDes = f.read()
|
|
5
|
+
|
|
6
|
+
setup(
|
|
7
|
+
name="reapsed",
|
|
8
|
+
version="1.0.0",
|
|
9
|
+
description="reapsed. made by g4 @callfowarding on cord",
|
|
10
|
+
long_description=longDes,
|
|
11
|
+
long_description_content_type="text/markdown",
|
|
12
|
+
author="g4",
|
|
13
|
+
author_email="meowmeow@1337.care",
|
|
14
|
+
packages=find_packages(),
|
|
15
|
+
include_package_data=True,
|
|
16
|
+
python_requires='>=3.6',
|
|
17
|
+
license="MIT",
|
|
18
|
+
)
|