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 +7 -0
- setta-0.0.0/README.md +1 -0
- setta-0.0.0/setup.cfg +4 -0
- setta-0.0.0/setup.py +24 -0
- setta-0.0.0/src/setta/__init__.py +1 -0
- setta-0.0.0/src/setta.egg-info/PKG-INFO +7 -0
- setta-0.0.0/src/setta.egg-info/SOURCES.txt +7 -0
- setta-0.0.0/src/setta.egg-info/dependency_links.txt +1 -0
- setta-0.0.0/src/setta.egg-info/top_level.txt +1 -0
setta-0.0.0/PKG-INFO
ADDED
setta-0.0.0/README.md
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
# setta
|
setta-0.0.0/setup.cfg
ADDED
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 @@
|
|
1
|
+
|
@@ -0,0 +1 @@
|
|
1
|
+
setta
|