tigre 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.
tigre-0.0.1/.gitignore ADDED
@@ -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.10
tigre-0.0.1/PKG-INFO ADDED
@@ -0,0 +1,9 @@
1
+ Metadata-Version: 2.4
2
+ Name: tigre
3
+ Version: 0.0.1
4
+ Summary: Placeholder for Tigre project
5
+ Author-email: Breno Dupin <breno.dupin@gmail.com>
6
+ Requires-Python: >=3.10
7
+ Description-Content-Type: text/markdown
8
+
9
+ Placeholder for Tigre project
tigre-0.0.1/README.md ADDED
@@ -0,0 +1 @@
1
+ Placeholder for Tigre project
@@ -0,0 +1,14 @@
1
+ [project]
2
+ name = "tigre"
3
+ version = "0.0.1"
4
+ description = "Placeholder for Tigre project"
5
+ readme = "README.md"
6
+ authors = [
7
+ { name = "Breno Dupin", email = "breno.dupin@gmail.com" }
8
+ ]
9
+ requires-python = ">=3.10"
10
+ dependencies = []
11
+
12
+ [build-system]
13
+ requires = ["hatchling"]
14
+ build-backend = "hatchling.build"
@@ -0,0 +1 @@
1
+ raise NotImplementedError("This is a placeholder for the Tigre project.")