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 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
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,7 @@
1
+ README.md
2
+ setup.py
3
+ busylib/__init__.py
4
+ busylib.egg-info/PKG-INFO
5
+ busylib.egg-info/SOURCES.txt
6
+ busylib.egg-info/dependency_links.txt
7
+ busylib.egg-info/top_level.txt
@@ -0,0 +1 @@
1
+ busylib
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
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
+