isard 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.
isard-0.0.1/PKG-INFO ADDED
@@ -0,0 +1,14 @@
1
+ Metadata-Version: 2.1
2
+ Name: isard
3
+ Version: 0.0.1
4
+ Summary:
5
+ Author: David de Mingo
6
+ Author-email: david@optersoft.com
7
+ Requires-Python: >=3.10,<4.0
8
+ Classifier: Programming Language :: Python :: 3
9
+ Classifier: Programming Language :: Python :: 3.10
10
+ Classifier: Programming Language :: Python :: 3.11
11
+ Classifier: Programming Language :: Python :: 3.12
12
+ Description-Content-Type: text/markdown
13
+
14
+ # ISARD
isard-0.0.1/README.md ADDED
@@ -0,0 +1 @@
1
+ # ISARD
@@ -0,0 +1,2 @@
1
+ def start():
2
+ print("start")
@@ -0,0 +1,14 @@
1
+ [tool.poetry]
2
+ name = "isard"
3
+ version = "0.0.1"
4
+ description = ""
5
+ authors = ["David de Mingo <david@optersoft.com>"]
6
+ readme = "README.md"
7
+
8
+ [tool.poetry.dependencies]
9
+ python = "^3.10"
10
+
11
+
12
+ [build-system]
13
+ requires = ["poetry-core"]
14
+ build-backend = "poetry.core.masonry.api"