ok_tasks 0.0.171__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,16 @@
1
+ Metadata-Version: 2.1
2
+ Name: ok_tasks
3
+ Version: 0.0.171
4
+ Summary: Minimal package created automatically
5
+ Home-page: https://example.com
6
+ Author:
7
+ Author-email:
8
+ License: MIT
9
+ Description: Minimal package created automatically
10
+ Platform: UNKNOWN
11
+ Classifier: Programming Language :: Python :: 3
12
+ Classifier: License :: OSI Approved :: MIT License
13
+ Classifier: Operating System :: OS Independent
14
+ Requires-Python: >=3.6
15
+
16
+ Minimal package created automatically
@@ -0,0 +1 @@
1
+ # Minimal package
@@ -0,0 +1,11 @@
1
+ from setuptools import setup
2
+
3
+ setup(
4
+ name="ok_tasks",
5
+ version="0.0.171",
6
+ packages=["ok_tasks"],
7
+ author="",
8
+ author_email="",
9
+ description="Minimal package created automatically",
10
+ license="MIT",
11
+ )