ktoolkit 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.
@@ -0,0 +1,16 @@
1
+ Metadata-Version: 2.1
2
+ Name: ktoolkit
3
+ Version: 0.0.1
4
+ Summary: This is the simplest module for quick work with files.
5
+ Home-page: https://example.com/
6
+ Author: kolyax
7
+ Author-email: example@gmail.com
8
+ License: UNKNOWN
9
+ Description: 123
10
+ Keywords: files speedfiles
11
+ Platform: UNKNOWN
12
+ Classifier: Programming Language :: Python :: 3.11
13
+ Classifier: License :: OSI Approved :: MIT License
14
+ Classifier: Operating System :: OS Independent
15
+ Requires-Python: >=3.6
16
+ Description-Content-Type: text/markdown
File without changes
@@ -0,0 +1,16 @@
1
+ Metadata-Version: 2.1
2
+ Name: ktoolkit
3
+ Version: 0.0.1
4
+ Summary: This is the simplest module for quick work with files.
5
+ Home-page: https://example.com/
6
+ Author: kolyax
7
+ Author-email: example@gmail.com
8
+ License: UNKNOWN
9
+ Description: 123
10
+ Keywords: files speedfiles
11
+ Platform: UNKNOWN
12
+ Classifier: Programming Language :: Python :: 3.11
13
+ Classifier: License :: OSI Approved :: MIT License
14
+ Classifier: Operating System :: OS Independent
15
+ Requires-Python: >=3.6
16
+ Description-Content-Type: text/markdown
@@ -0,0 +1,7 @@
1
+ setup.py
2
+ ktoolkit/__init__.py
3
+ ktoolkit.egg-info/PKG-INFO
4
+ ktoolkit.egg-info/SOURCES.txt
5
+ ktoolkit.egg-info/dependency_links.txt
6
+ ktoolkit.egg-info/requires.txt
7
+ ktoolkit.egg-info/top_level.txt
@@ -0,0 +1 @@
1
+ requests>=2.25.1
@@ -0,0 +1 @@
1
+ ktoolkit
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1,29 @@
1
+ from setuptools import setup, find_packages
2
+
3
+
4
+ def readme():
5
+ return "123"
6
+ with open('README.md', 'r') as f:
7
+ return f.read()
8
+
9
+
10
+ setup(
11
+ name='ktoolkit',
12
+ version='0.0.1',
13
+ author='kolyax',
14
+ author_email='example@gmail.com',
15
+ description='This is the simplest module for quick work with files.',
16
+ long_description=readme(),
17
+ long_description_content_type='text/markdown',
18
+ url='https://example.com/',
19
+ packages=find_packages(),
20
+ install_requires=['requests>=2.25.1'],
21
+ classifiers=[
22
+ 'Programming Language :: Python :: 3.11',
23
+ 'License :: OSI Approved :: MIT License',
24
+ 'Operating System :: OS Independent'
25
+ ],
26
+ keywords='files speedfiles ',
27
+
28
+ python_requires='>=3.6'
29
+ )