busylib 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.
Potentially problematic release.
This version of busylib might be problematic. Click here for more details.
- busylib-0.0.1/PKG-INFO +19 -0
- busylib-0.0.1/README.md +0 -0
- busylib-0.0.1/busylib/__init__.py +0 -0
- busylib-0.0.1/busylib.egg-info/PKG-INFO +19 -0
- busylib-0.0.1/busylib.egg-info/SOURCES.txt +7 -0
- busylib-0.0.1/busylib.egg-info/dependency_links.txt +1 -0
- busylib-0.0.1/busylib.egg-info/top_level.txt +1 -0
- busylib-0.0.1/setup.cfg +4 -0
- busylib-0.0.1/setup.py +18 -0
busylib-0.0.1/PKG-INFO
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: busylib
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Package name reserved
|
|
5
|
+
Home-page: https://github.com/yourusername/busylib
|
|
6
|
+
Author: Your Name
|
|
7
|
+
Author-email: your.email@example.com
|
|
8
|
+
Classifier: Development Status :: 1 - Planning
|
|
9
|
+
Classifier: Programming Language :: Python :: 3
|
|
10
|
+
Requires-Python: >=3.6
|
|
11
|
+
Dynamic: author
|
|
12
|
+
Dynamic: author-email
|
|
13
|
+
Dynamic: classifier
|
|
14
|
+
Dynamic: description
|
|
15
|
+
Dynamic: home-page
|
|
16
|
+
Dynamic: requires-python
|
|
17
|
+
Dynamic: summary
|
|
18
|
+
|
|
19
|
+
This package name is reserved for future use
|
busylib-0.0.1/README.md
ADDED
|
File without changes
|
|
File without changes
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: busylib
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Package name reserved
|
|
5
|
+
Home-page: https://github.com/yourusername/busylib
|
|
6
|
+
Author: Your Name
|
|
7
|
+
Author-email: your.email@example.com
|
|
8
|
+
Classifier: Development Status :: 1 - Planning
|
|
9
|
+
Classifier: Programming Language :: Python :: 3
|
|
10
|
+
Requires-Python: >=3.6
|
|
11
|
+
Dynamic: author
|
|
12
|
+
Dynamic: author-email
|
|
13
|
+
Dynamic: classifier
|
|
14
|
+
Dynamic: description
|
|
15
|
+
Dynamic: home-page
|
|
16
|
+
Dynamic: requires-python
|
|
17
|
+
Dynamic: summary
|
|
18
|
+
|
|
19
|
+
This package name is reserved for future use
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
busylib
|
busylib-0.0.1/setup.cfg
ADDED
busylib-0.0.1/setup.py
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
from setuptools import setup, find_packages
|
|
2
|
+
|
|
3
|
+
setup(
|
|
4
|
+
name='busylib',
|
|
5
|
+
version='0.0.1',
|
|
6
|
+
description='Package name reserved',
|
|
7
|
+
long_description='This package name is reserved for future use',
|
|
8
|
+
url='https://github.com/yourusername/busylib',
|
|
9
|
+
author='Your Name',
|
|
10
|
+
author_email='your.email@example.com',
|
|
11
|
+
packages=find_packages(),
|
|
12
|
+
classifiers=[
|
|
13
|
+
'Development Status :: 1 - Planning',
|
|
14
|
+
'Programming Language :: Python :: 3',
|
|
15
|
+
],
|
|
16
|
+
python_requires='>=3.6',
|
|
17
|
+
)
|
|
18
|
+
|