the-datagarden 0.1.0__py3-none-any.whl

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.
File without changes
the_datagarden/cli.py ADDED
@@ -0,0 +1,9 @@
1
+ import click
2
+
3
+
4
+ @click.command()
5
+ @click.argument("arg1", required=False)
6
+ def main(arg1):
7
+ """Command-line tool for my_package_name."""
8
+ print(f"Received arguments: arg1={arg1}")
9
+ print("Running your command...")
@@ -0,0 +1,18 @@
1
+ Metadata-Version: 2.1
2
+ Name: the-datagarden
3
+ Version: 0.1.0
4
+ Summary: Accessing public data made easy for everyone.
5
+ Author-email: Maarten de Ruyter <maarten@the-datagarden.io>
6
+ License: MIT
7
+ Classifier: Programming Language :: Python :: 3
8
+ Classifier: Programming Language :: Python :: 3.10
9
+ Classifier: Programming Language :: Python :: 3.11
10
+ Classifier: Programming Language :: Python :: 3.12
11
+ Classifier: Programming Language :: Python :: 3.13
12
+ Classifier: License :: OSI Approved :: MIT License
13
+ Classifier: Operating System :: OS Independent
14
+ Requires-Python: >=3.10
15
+ Description-Content-Type: text/markdown
16
+ Requires-Dist: click >=8.1.7
17
+ Requires-Dist: pydantic >=2.9.2
18
+
@@ -0,0 +1,7 @@
1
+ the_datagarden/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2
+ the_datagarden/cli.py,sha256=0NPE-rysIsoPGUOh_ylQbLHRAX2hAyuIhG-I3Z-5IFI,220
3
+ the_datagarden-0.1.0.dist-info/METADATA,sha256=AlhJXqjNAxyuQ_t22aAW6_mCp06_nbsXCV-UDK9Uhwc,662
4
+ the_datagarden-0.1.0.dist-info/WHEEL,sha256=R06PA3UVYHThwHvxuRWMqaGcr-PuniXahwjmQRFMEkY,91
5
+ the_datagarden-0.1.0.dist-info/entry_points.txt,sha256=R40-UiUsDqy6RfBSnkOCj98Ed0bfvseJPpClXxqVVAM,59
6
+ the_datagarden-0.1.0.dist-info/top_level.txt,sha256=S0Wn3mYX0nrwGIqeqWE5vAc3ASTK13E-F_9eTOQu8hs,15
7
+ the_datagarden-0.1.0.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (75.5.0)
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
5
+
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ the-datagarden = the_datagarden.cli:main
@@ -0,0 +1 @@
1
+ the_datagarden