forktex 0.1.0__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.
forktex-0.1.0/PKG-INFO ADDED
@@ -0,0 +1,19 @@
1
+ Metadata-Version: 2.3
2
+ Name: forktex
3
+ Version: 0.1.0
4
+ Summary: Official Python library to interact with Forktex API
5
+ Author: Alex Doc
6
+ Author-email: alexandru.dochian@forktex.com
7
+ Requires-Python: >=3.11
8
+ Classifier: Programming Language :: Python :: 3
9
+ Classifier: Programming Language :: Python :: 3.11
10
+ Classifier: Programming Language :: Python :: 3.12
11
+ Classifier: Programming Language :: Python :: 3.13
12
+ Project-URL: Bug Tracker, https://github.com/forktex/forktex-python/issues
13
+ Project-URL: Homepage, https://forktex.com
14
+ Project-URL: Repository, https://github.com/forktex/forktex-python
15
+ Description-Content-Type: text/markdown
16
+
17
+ # forktex-python
18
+ Python library to interact with Forktex API
19
+
@@ -0,0 +1,2 @@
1
+ # forktex-python
2
+ Python library to interact with Forktex API
@@ -0,0 +1,20 @@
1
+ [project]
2
+ name = "forktex"
3
+ version = "0.1.0"
4
+ description = "Official Python library to interact with Forktex API"
5
+ authors = [
6
+ {name = "Alex Doc",email = "alexandru.dochian@forktex.com"}
7
+ ]
8
+ readme = "README.md"
9
+ requires-python = ">=3.11"
10
+ dependencies = [
11
+ ]
12
+
13
+ [project.urls]
14
+ "Homepage" = "https://forktex.com"
15
+ "Repository" = "https://github.com/forktex/forktex-python"
16
+ "Bug Tracker" = "https://github.com/forktex/forktex-python/issues"
17
+
18
+ [build-system]
19
+ requires = ["poetry-core>=2.0.0,<3.0.0"]
20
+ build-backend = "poetry.core.masonry.api"
@@ -0,0 +1,3 @@
1
+ def say_hello():
2
+ return "Hello, World!"
3
+