myrtille 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.
@@ -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.12
@@ -0,0 +1,6 @@
1
+ Metadata-Version: 2.4
2
+ Name: myrtille
3
+ Version: 0.1.0
4
+ Summary: Add your description here
5
+ Author-email: Florian Daude <floriandaude@hotmail.fr>
6
+ Requires-Python: >=3.12
File without changes
@@ -0,0 +1,17 @@
1
+ [project]
2
+ name = "myrtille"
3
+ version = "0.1.0"
4
+ description = "Add your description here"
5
+ readme = "README.md"
6
+ authors = [
7
+ { name = "Florian Daude", email = "floriandaude@hotmail.fr" }
8
+ ]
9
+ requires-python = ">=3.12"
10
+ dependencies = []
11
+
12
+ [project.scripts]
13
+ myrtille = "myrtille:main"
14
+
15
+ [build-system]
16
+ requires = ["hatchling"]
17
+ build-backend = "hatchling.build"
@@ -0,0 +1,2 @@
1
+ def main() -> None:
2
+ print("Hello from myrtille!")
myrtille-0.1.0/uv.lock ADDED
@@ -0,0 +1,8 @@
1
+ version = 1
2
+ revision = 2
3
+ requires-python = ">=3.12"
4
+
5
+ [[package]]
6
+ name = "myrtille"
7
+ version = "0.1.0"
8
+ source = { editable = "." }