seltz 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.
seltz-0.0.1/PKG-INFO ADDED
@@ -0,0 +1,8 @@
1
+ Metadata-Version: 2.1
2
+ Name: seltz
3
+ Version: 0.0.1
4
+ Home-page:
5
+ Author: Elias Bassani
6
+ Author-email: elias.bssn@gmail.com
7
+ Requires-Python: >=3.9
8
+ Description-Content-Type: text/markdown
seltz-0.0.1/README.md ADDED
File without changes
@@ -0,0 +1,8 @@
1
+ Metadata-Version: 2.1
2
+ Name: seltz
3
+ Version: 0.0.1
4
+ Home-page:
5
+ Author: Elias Bassani
6
+ Author-email: elias.bssn@gmail.com
7
+ Requires-Python: >=3.9
8
+ Description-Content-Type: text/markdown
@@ -0,0 +1,6 @@
1
+ README.md
2
+ setup.py
3
+ seltz.egg-info/PKG-INFO
4
+ seltz.egg-info/SOURCES.txt
5
+ seltz.egg-info/dependency_links.txt
6
+ seltz.egg-info/top_level.txt
@@ -0,0 +1 @@
1
+
seltz-0.0.1/setup.cfg ADDED
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
seltz-0.0.1/setup.py ADDED
@@ -0,0 +1,17 @@
1
+ import setuptools
2
+
3
+ setuptools.setup(
4
+ name="seltz",
5
+ version="0.0.1",
6
+ author="Elias Bassani",
7
+ author_email="elias.bssn@gmail.com",
8
+ description="",
9
+ long_description="",
10
+ long_description_content_type="text/markdown",
11
+ url="",
12
+ packages=setuptools.find_packages(),
13
+ install_requires=[],
14
+ classifiers=[],
15
+ keywords=[],
16
+ python_requires=">=3.9",
17
+ )