rota 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.
rota-0.1.0/PKG-INFO ADDED
@@ -0,0 +1,8 @@
1
+ Metadata-Version: 2.1
2
+ Name: rota
3
+ Version: 0.1.0
4
+ Summary: Add your description here
5
+ Author-email: Seu Nome <seuemail@example.com>
6
+ License: MIT
7
+ Requires-Python: >=3.12
8
+ Description-Content-Type: text/markdown
rota-0.1.0/README.md ADDED
File without changes
@@ -0,0 +1,18 @@
1
+ [build-system]
2
+ requires = ["setuptools", "wheel"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "rota"
7
+ version = "0.1.0"
8
+ description = "Add your description here"
9
+ authors = [
10
+ { name = "Seu Nome", email = "seuemail@example.com" }
11
+ ]
12
+ license = { text = "MIT" }
13
+ readme = "README.md"
14
+ requires-python = ">=3.12"
15
+ dependencies = []
16
+
17
+ [project.scripts]
18
+ rota = "rota.hello:main"
File without changes
@@ -0,0 +1,6 @@
1
+ def main():
2
+ print("Hello from rota!")
3
+
4
+
5
+ if __name__ == "__main__":
6
+ main()
@@ -0,0 +1,8 @@
1
+ Metadata-Version: 2.1
2
+ Name: rota
3
+ Version: 0.1.0
4
+ Summary: Add your description here
5
+ Author-email: Seu Nome <seuemail@example.com>
6
+ License: MIT
7
+ Requires-Python: >=3.12
8
+ Description-Content-Type: text/markdown
@@ -0,0 +1,9 @@
1
+ README.md
2
+ pyproject.toml
3
+ rota/__init__.py
4
+ rota/hello.py
5
+ rota.egg-info/PKG-INFO
6
+ rota.egg-info/SOURCES.txt
7
+ rota.egg-info/dependency_links.txt
8
+ rota.egg-info/entry_points.txt
9
+ rota.egg-info/top_level.txt
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ rota = rota.hello:main
@@ -0,0 +1 @@
1
+ rota
rota-0.1.0/setup.cfg ADDED
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+