setta 0.0.0__tar.gz

Sign up to get free protection for your applications and to get access to all the features.
setta-0.0.0/PKG-INFO ADDED
@@ -0,0 +1,7 @@
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 ADDED
@@ -0,0 +1 @@
1
+ # setta
setta-0.0.0/setup.cfg ADDED
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
setta-0.0.0/setup.py ADDED
@@ -0,0 +1,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=[],
23
+ extras_require={},
24
+ )
@@ -0,0 +1 @@
1
+ __version__ = "0.0.0"
@@ -0,0 +1,7 @@
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
@@ -0,0 +1,7 @@
1
+ README.md
2
+ setup.py
3
+ src/setta/__init__.py
4
+ src/setta.egg-info/PKG-INFO
5
+ src/setta.egg-info/SOURCES.txt
6
+ src/setta.egg-info/dependency_links.txt
7
+ src/setta.egg-info/top_level.txt
@@ -0,0 +1 @@
1
+ setta