struai 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.
struai-0.0.1/PKG-INFO ADDED
@@ -0,0 +1,17 @@
1
+ Metadata-Version: 2.4
2
+ Name: struai
3
+ Version: 0.0.1
4
+ Summary: StruAI - AI-powered tools
5
+ Project-URL: Homepage, https://github.com/bhoshaga/struai
6
+ Author-email: bhoshaga <bhoshaga@gmail.com>
7
+ License-Expression: MIT
8
+ Keywords: ai,struai
9
+ Classifier: Development Status :: 1 - Planning
10
+ Classifier: License :: OSI Approved :: MIT License
11
+ Classifier: Programming Language :: Python :: 3
12
+ Requires-Python: >=3.8
13
+ Description-Content-Type: text/markdown
14
+
15
+ # struai
16
+
17
+ Coming soon.
struai-0.0.1/README.md ADDED
@@ -0,0 +1,3 @@
1
+ # struai
2
+
3
+ Coming soon.
@@ -0,0 +1,23 @@
1
+ [build-system]
2
+ requires = ["hatchling"]
3
+ build-backend = "hatchling.build"
4
+
5
+ [project]
6
+ name = "struai"
7
+ version = "0.0.1"
8
+ description = "StruAI - AI-powered tools"
9
+ readme = "README.md"
10
+ license = "MIT"
11
+ authors = [
12
+ { name = "bhoshaga", email = "bhoshaga@gmail.com" }
13
+ ]
14
+ keywords = ["ai", "struai"]
15
+ classifiers = [
16
+ "Development Status :: 1 - Planning",
17
+ "License :: OSI Approved :: MIT License",
18
+ "Programming Language :: Python :: 3",
19
+ ]
20
+ requires-python = ">=3.8"
21
+
22
+ [project.urls]
23
+ Homepage = "https://github.com/bhoshaga/struai"
@@ -0,0 +1,2 @@
1
+ """struai"""
2
+ __version__ = "0.0.1"