usekit 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.
- usekit-0.0.1/PKG-INFO +7 -0
- usekit-0.0.1/README.md +6 -0
- usekit-0.0.1/setup.cfg +4 -0
- usekit-0.0.1/setup.py +11 -0
- usekit-0.0.1/usekit/__init__.py +2 -0
- usekit-0.0.1/usekit/usekit.py +12 -0
- usekit-0.0.1/usekit.egg-info/PKG-INFO +7 -0
- usekit-0.0.1/usekit.egg-info/SOURCES.txt +8 -0
- usekit-0.0.1/usekit.egg-info/dependency_links.txt +1 -0
- usekit-0.0.1/usekit.egg-info/top_level.txt +1 -0
usekit-0.0.1/PKG-INFO
ADDED
usekit-0.0.1/README.md
ADDED
usekit-0.0.1/setup.cfg
ADDED
usekit-0.0.1/setup.py
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
from setuptools import setup, find_packages
|
|
2
|
+
|
|
3
|
+
setup(
|
|
4
|
+
name="usekit",
|
|
5
|
+
version="0.0.1",
|
|
6
|
+
author="ropnfop",
|
|
7
|
+
author_email="withropnfop@gmail.com",
|
|
8
|
+
description="Minimal input, auto path toolkit",
|
|
9
|
+
packages=find_packages(),
|
|
10
|
+
python_requires=">=3.6",
|
|
11
|
+
)
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
usekit
|