ddddd 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.
ddddd-0.0.1/PKG-INFO ADDED
@@ -0,0 +1,11 @@
1
+ Metadata-Version: 2.4
2
+ Name: ddddd
3
+ Version: 0.0.1
4
+ Summary: This is the simplest module for quick work with files.
5
+ Author: __token__
6
+ Requires-Python: >=3.7
7
+ Requires-Dist: openai>=1.0.0
8
+ Dynamic: author
9
+ Dynamic: requires-dist
10
+ Dynamic: requires-python
11
+ Dynamic: summary
ddddd-0.0.1/README.md ADDED
@@ -0,0 +1,6 @@
1
+ # Прикольная библиотека
2
+
3
+ ## Установка
4
+
5
+ ```bash
6
+ pip install ddddd
@@ -0,0 +1,11 @@
1
+ Metadata-Version: 2.4
2
+ Name: ddddd
3
+ Version: 0.0.1
4
+ Summary: This is the simplest module for quick work with files.
5
+ Author: __token__
6
+ Requires-Python: >=3.7
7
+ Requires-Dist: openai>=1.0.0
8
+ Dynamic: author
9
+ Dynamic: requires-dist
10
+ Dynamic: requires-python
11
+ Dynamic: summary
@@ -0,0 +1,7 @@
1
+ README.md
2
+ setup.py
3
+ ddddd.egg-info/PKG-INFO
4
+ ddddd.egg-info/SOURCES.txt
5
+ ddddd.egg-info/dependency_links.txt
6
+ ddddd.egg-info/requires.txt
7
+ ddddd.egg-info/top_level.txt
@@ -0,0 +1 @@
1
+ openai>=1.0.0
@@ -0,0 +1 @@
1
+
ddddd-0.0.1/setup.cfg ADDED
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
ddddd-0.0.1/setup.py ADDED
@@ -0,0 +1,13 @@
1
+ from setuptools import setup, find_packages
2
+
3
+ setup(
4
+ name="ddddd",
5
+ version="0.0.1",
6
+ author="__token__",
7
+ description="This is the simplest module for quick work with files.",
8
+ packages=find_packages(),
9
+ python_requires=">=3.7",
10
+ install_requires=[
11
+ "openai>=1.0.0",
12
+ ],
13
+ )