aniate 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.
aniate-0.0.1/PKG-INFO ADDED
@@ -0,0 +1,11 @@
1
+ Metadata-Version: 2.4
2
+ Name: aniate
3
+ Version: 0.0.1
4
+ Summary: Official Aniate SDK
5
+ Project-URL: Homepage, https://aniate.com
6
+ Author-email: Kabir <kabir@aniate.com>
7
+ License: MIT
8
+ Requires-Dist: requests
9
+ Description-Content-Type: text/markdown
10
+
11
+ # Aniate SDK
aniate-0.0.1/README.md ADDED
@@ -0,0 +1 @@
1
+ # Aniate SDK
@@ -0,0 +1,5 @@
1
+ class Engram:
2
+ def __init__(self, key):
3
+ self.key = key
4
+ def call(self, msg):
5
+ return {"status": "coming_soon"}
@@ -0,0 +1,15 @@
1
+ [build-system]
2
+ requires = ["hatchling"]
3
+ build-backend = "hatchling.build"
4
+
5
+ [project]
6
+ name = "aniate"
7
+ version = "0.0.1"
8
+ description = "Official Aniate SDK"
9
+ readme = "README.md"
10
+ authors = [{ name = "Kabir", email = "kabir@aniate.com" }]
11
+ license = { text = "MIT" }
12
+ dependencies = ["requests"]
13
+
14
+ [project.urls]
15
+ Homepage = "https://aniate.com"