dion 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.
dion-0.0.1/PKG-INFO ADDED
@@ -0,0 +1,17 @@
1
+ Metadata-Version: 2.4
2
+ Name: dion
3
+ Version: 0.0.1
4
+ Summary: A security placeholder package.
5
+ Home-page:
6
+ Author: Kartik Singh
7
+ License: MIT
8
+ Requires-Python: >=3.6
9
+ Description-Content-Type: text/plain
10
+ Dynamic: author
11
+ Dynamic: description
12
+ Dynamic: description-content-type
13
+ Dynamic: license
14
+ Dynamic: requires-python
15
+ Dynamic: summary
16
+
17
+ A security placeholder package.
@@ -0,0 +1 @@
1
+ # A security placeholder package.
@@ -0,0 +1,17 @@
1
+ Metadata-Version: 2.4
2
+ Name: dion
3
+ Version: 0.0.1
4
+ Summary: A security placeholder package.
5
+ Home-page:
6
+ Author: Kartik Singh
7
+ License: MIT
8
+ Requires-Python: >=3.6
9
+ Description-Content-Type: text/plain
10
+ Dynamic: author
11
+ Dynamic: description
12
+ Dynamic: description-content-type
13
+ Dynamic: license
14
+ Dynamic: requires-python
15
+ Dynamic: summary
16
+
17
+ A security placeholder package.
@@ -0,0 +1,6 @@
1
+ setup.py
2
+ dion/__init__.py
3
+ dion.egg-info/PKG-INFO
4
+ dion.egg-info/SOURCES.txt
5
+ dion.egg-info/dependency_links.txt
6
+ dion.egg-info/top_level.txt
@@ -0,0 +1 @@
1
+ dion
dion-0.0.1/setup.cfg ADDED
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
dion-0.0.1/setup.py ADDED
@@ -0,0 +1,14 @@
1
+ from setuptools import setup, find_packages
2
+
3
+ setup(
4
+ name="dion",
5
+ version="0.0.1",
6
+ description="A security placeholder package.",
7
+ long_description="A security placeholder package.",
8
+ long_description_content_type="text/plain",
9
+ author="Kartik Singh",
10
+ url="",
11
+ packages=find_packages(),
12
+ python_requires=">=3.6",
13
+ license="MIT",
14
+ )