chatterkit 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,12 @@
1
+ Metadata-Version: 2.1
2
+ Name: chatterkit
3
+ Version: 0.0.1
4
+ Summary: chatterkit
5
+ Home-page: UNKNOWN
6
+ Author: Anish Agrawal
7
+ Author-email: your.email@example.com
8
+ License: UNKNOWN
9
+ Platform: UNKNOWN
10
+
11
+ UNKNOWN
12
+
File without changes
@@ -0,0 +1,12 @@
1
+ Metadata-Version: 2.1
2
+ Name: chatterkit
3
+ Version: 0.0.1
4
+ Summary: chatterkit
5
+ Home-page: UNKNOWN
6
+ Author: Anish Agrawal
7
+ Author-email: your.email@example.com
8
+ License: UNKNOWN
9
+ Platform: UNKNOWN
10
+
11
+ UNKNOWN
12
+
@@ -0,0 +1,6 @@
1
+ setup.py
2
+ chatterkit/__init__.py
3
+ chatterkit.egg-info/PKG-INFO
4
+ chatterkit.egg-info/SOURCES.txt
5
+ chatterkit.egg-info/dependency_links.txt
6
+ chatterkit.egg-info/top_level.txt
@@ -0,0 +1 @@
1
+ chatterkit
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1,10 @@
1
+ from setuptools import setup
2
+
3
+ setup(
4
+ name="chatterkit",
5
+ version="0.0.1",
6
+ description="chatterkit",
7
+ author="Anish Agrawal",
8
+ author_email="your.email@example.com",
9
+ packages=["chatterkit"],
10
+ )