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.
- ktoolkit-0.0.1/PKG-INFO +16 -0
- ktoolkit-0.0.1/ktoolkit/__init__.py +0 -0
- ktoolkit-0.0.1/ktoolkit.egg-info/PKG-INFO +16 -0
- ktoolkit-0.0.1/ktoolkit.egg-info/SOURCES.txt +7 -0
- ktoolkit-0.0.1/ktoolkit.egg-info/dependency_links.txt +1 -0
- ktoolkit-0.0.1/ktoolkit.egg-info/requires.txt +1 -0
- ktoolkit-0.0.1/ktoolkit.egg-info/top_level.txt +1 -0
- ktoolkit-0.0.1/setup.cfg +4 -0
- ktoolkit-0.0.1/setup.py +29 -0
ktoolkit-0.0.1/PKG-INFO
ADDED
@@ -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 @@
|
|
1
|
+
|
@@ -0,0 +1 @@
|
|
1
|
+
requests>=2.25.1
|
@@ -0,0 +1 @@
|
|
1
|
+
ktoolkit
|
ktoolkit-0.0.1/setup.cfg
ADDED
ktoolkit-0.0.1/setup.py
ADDED
@@ -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
|
+
)
|