setta 0.0.0__tar.gz → 0.0.1.dev0__tar.gz

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,17 @@
1
+ Metadata-Version: 2.1
2
+ Name: setta
3
+ Version: 0.0.1.dev0
4
+ Requires-Python: >=3.0
5
+ Description-Content-Type: text/markdown
6
+ Requires-Dist: click==8.1.3
7
+ Requires-Dist: requests==2.28.1
8
+ Requires-Dist: PyYAML==6.0
9
+ Requires-Dist: websockets==11.0.3
10
+ Requires-Dist: fastapi==0.115.4
11
+ Requires-Dist: uvicorn==0.32.0
12
+ Requires-Dist: docstring_parser==0.15
13
+ Requires-Dist: psutil==5.9.7
14
+ Requires-Dist: basedpyright==1.25.0
15
+ Requires-Dist: docstring-to-markdown==0.15
16
+ Requires-Dist: black==23.7.0
17
+ Requires-Dist: ptyprocess==0.7.0
File without changes
@@ -1,24 +1,35 @@
1
- import sys
2
-
3
- import setuptools
4
-
5
- sys.path.insert(0, "src")
6
- import setta
7
-
8
- with open("README.md", "r") as fh:
9
- long_description = fh.read()
10
-
11
-
12
- setuptools.setup(
13
- name="setta",
14
- version=setta.__version__,
15
- description="",
16
- long_description=long_description,
17
- long_description_content_type="text/markdown",
18
- package_dir={"": "src"},
19
- packages=setuptools.find_packages(where="src"),
20
- classifiers=[],
21
- python_requires=">=3.0",
22
- install_requires=[],
23
- extras_require={},
24
- )
1
+ import sys
2
+
3
+ import setuptools
4
+
5
+ sys.path.insert(0, "src")
6
+ import setta
7
+
8
+ with open("README.md", "r") as fh:
9
+ long_description = fh.read()
10
+
11
+
12
+ setuptools.setup(
13
+ name="setta",
14
+ version=setta.__version__,
15
+ description="",
16
+ long_description=long_description,
17
+ long_description_content_type="text/markdown",
18
+ package_dir={"": "src"},
19
+ packages=setuptools.find_packages(where="src"),
20
+ classifiers=[],
21
+ python_requires=">=3.0",
22
+ install_requires=[ "click==8.1.3",
23
+ "requests==2.28.1",
24
+ "PyYAML==6.0",
25
+ "websockets==11.0.3",
26
+ "fastapi==0.115.4",
27
+ "uvicorn==0.32.0",
28
+ "docstring_parser==0.15",
29
+ "psutil==5.9.7",
30
+ "basedpyright==1.25.0",
31
+ "docstring-to-markdown==0.15",
32
+ "black==23.7.0",
33
+ "ptyprocess==0.7.0"],
34
+ extras_require={},
35
+ )
@@ -0,0 +1 @@
1
+ __version__="0.0.1.dev0"
@@ -0,0 +1,17 @@
1
+ Metadata-Version: 2.1
2
+ Name: setta
3
+ Version: 0.0.1.dev0
4
+ Requires-Python: >=3.0
5
+ Description-Content-Type: text/markdown
6
+ Requires-Dist: click==8.1.3
7
+ Requires-Dist: requests==2.28.1
8
+ Requires-Dist: PyYAML==6.0
9
+ Requires-Dist: websockets==11.0.3
10
+ Requires-Dist: fastapi==0.115.4
11
+ Requires-Dist: uvicorn==0.32.0
12
+ Requires-Dist: docstring_parser==0.15
13
+ Requires-Dist: psutil==5.9.7
14
+ Requires-Dist: basedpyright==1.25.0
15
+ Requires-Dist: docstring-to-markdown==0.15
16
+ Requires-Dist: black==23.7.0
17
+ Requires-Dist: ptyprocess==0.7.0
@@ -4,4 +4,5 @@ src/setta/__init__.py
4
4
  src/setta.egg-info/PKG-INFO
5
5
  src/setta.egg-info/SOURCES.txt
6
6
  src/setta.egg-info/dependency_links.txt
7
+ src/setta.egg-info/requires.txt
7
8
  src/setta.egg-info/top_level.txt
@@ -0,0 +1,12 @@
1
+ click==8.1.3
2
+ requests==2.28.1
3
+ PyYAML==6.0
4
+ websockets==11.0.3
5
+ fastapi==0.115.4
6
+ uvicorn==0.32.0
7
+ docstring_parser==0.15
8
+ psutil==5.9.7
9
+ basedpyright==1.25.0
10
+ docstring-to-markdown==0.15
11
+ black==23.7.0
12
+ ptyprocess==0.7.0
setta-0.0.0/PKG-INFO DELETED
@@ -1,7 +0,0 @@
1
- Metadata-Version: 2.1
2
- Name: setta
3
- Version: 0.0.0
4
- Requires-Python: >=3.0
5
- Description-Content-Type: text/markdown
6
-
7
- # setta
setta-0.0.0/README.md DELETED
@@ -1 +0,0 @@
1
- # setta
@@ -1 +0,0 @@
1
- __version__ = "0.0.0"
@@ -1,7 +0,0 @@
1
- Metadata-Version: 2.1
2
- Name: setta
3
- Version: 0.0.0
4
- Requires-Python: >=3.0
5
- Description-Content-Type: text/markdown
6
-
7
- # setta
File without changes