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.
- setta-0.0.1.dev0/PKG-INFO +17 -0
- setta-0.0.1.dev0/README.md +0 -0
- {setta-0.0.0 → setta-0.0.1.dev0}/setup.py +35 -24
- setta-0.0.1.dev0/src/setta/__init__.py +1 -0
- setta-0.0.1.dev0/src/setta.egg-info/PKG-INFO +17 -0
- {setta-0.0.0 → setta-0.0.1.dev0}/src/setta.egg-info/SOURCES.txt +1 -0
- setta-0.0.1.dev0/src/setta.egg-info/requires.txt +12 -0
- setta-0.0.0/PKG-INFO +0 -7
- setta-0.0.0/README.md +0 -1
- setta-0.0.0/src/setta/__init__.py +0 -1
- setta-0.0.0/src/setta.egg-info/PKG-INFO +0 -7
- {setta-0.0.0 → setta-0.0.1.dev0}/setup.cfg +0 -0
- {setta-0.0.0 → setta-0.0.1.dev0}/src/setta.egg-info/dependency_links.txt +0 -0
- {setta-0.0.0 → setta-0.0.1.dev0}/src/setta.egg-info/top_level.txt +0 -0
@@ -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
|
-
|
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
|
setta-0.0.0/PKG-INFO
DELETED
setta-0.0.0/README.md
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
# setta
|
@@ -1 +0,0 @@
|
|
1
|
-
__version__ = "0.0.0"
|
File without changes
|
File without changes
|
File without changes
|