openhack 0.1.0a1__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,10 @@
1
+ # Python-generated files
2
+ __pycache__/
3
+ *.py[oc]
4
+ build/
5
+ dist/
6
+ wheels/
7
+ *.egg-info
8
+
9
+ # Virtual environments
10
+ .venv
@@ -0,0 +1 @@
1
+ 3.11
@@ -0,0 +1,13 @@
1
+ Metadata-Version: 2.4
2
+ Name: openhack
3
+ Version: 0.1.0a1
4
+ Summary: OpenHack
5
+ Project-URL: Homepage, https://github.com/openhack-ai/openhack
6
+ Author-email: OpenHack <team@openhack.com>
7
+ License-Expression: Apache-2.0
8
+ Classifier: Development Status :: 1 - Planning
9
+ Classifier: Programming Language :: Python :: 3
10
+ Requires-Python: >=3.11
11
+ Description-Content-Type: text/markdown
12
+
13
+ # openhack
@@ -0,0 +1 @@
1
+ # openhack
@@ -0,0 +1,22 @@
1
+ [project]
2
+ name = "openhack"
3
+ version = "0.1.0a1"
4
+ description = "OpenHack"
5
+ readme = "README.md"
6
+ authors = [
7
+ { name = "OpenHack", email = "team@openhack.com" }
8
+ ]
9
+ requires-python = ">=3.11"
10
+ dependencies = []
11
+ license = "Apache-2.0"
12
+ classifiers = [
13
+ "Development Status :: 1 - Planning",
14
+ "Programming Language :: Python :: 3",
15
+ ]
16
+
17
+ [project.urls]
18
+ Homepage = "https://github.com/openhack-ai/openhack"
19
+
20
+ [build-system]
21
+ requires = ["hatchling"]
22
+ build-backend = "hatchling.build"
@@ -0,0 +1,2 @@
1
+ def hello() -> str:
2
+ return "Hello from openhack!"
File without changes