celesturis 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.
@@ -0,0 +1,7 @@
1
+ Metadata-Version: 2.4
2
+ Name: celesturis
3
+ Version: 0.0.1
4
+ Summary: Celesturis — A platform for trustworthy digital intelligence.
5
+ Author: Igor Stepnov
6
+ Dynamic: author
7
+ Dynamic: summary
@@ -0,0 +1,7 @@
1
+ Metadata-Version: 2.4
2
+ Name: celesturis
3
+ Version: 0.0.1
4
+ Summary: Celesturis — A platform for trustworthy digital intelligence.
5
+ Author: Igor Stepnov
6
+ Dynamic: author
7
+ Dynamic: summary
@@ -0,0 +1,5 @@
1
+ setup.py
2
+ celesturis.egg-info/PKG-INFO
3
+ celesturis.egg-info/SOURCES.txt
4
+ celesturis.egg-info/dependency_links.txt
5
+ celesturis.egg-info/top_level.txt
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1,9 @@
1
+ from setuptools import setup, find_packages
2
+
3
+ setup(
4
+ name="celesturis",
5
+ version="0.0.1",
6
+ description="Celesturis — A platform for trustworthy digital intelligence.",
7
+ author="Igor Stepnov",
8
+ packages=find_packages(),
9
+ )