sportscli 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,22 @@
1
+ Metadata-Version: 2.4
2
+ Name: sportscli
3
+ Version: 0.1.0
4
+ Summary: Terminal sports data CLI
5
+ Requires-Python: >=3.10
6
+ Description-Content-Type: text/markdown
7
+ Requires-Dist: typer
8
+ Requires-Dist: requests
9
+ Requires-Dist: rich
10
+
11
+ # sportscli
12
+
13
+ Sports data in terminal.
14
+
15
+ ## Install
16
+
17
+ pip install sportscli
18
+
19
+ ## Usage
20
+
21
+ sports cricket
22
+ sports chess
@@ -0,0 +1,12 @@
1
+ # sportscli
2
+
3
+ Sports data in terminal.
4
+
5
+ ## Install
6
+
7
+ pip install sportscli
8
+
9
+ ## Usage
10
+
11
+ sports cricket
12
+ sports chess
@@ -0,0 +1,18 @@
1
+ [build-system]
2
+ requires = ["setuptools>=61"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "sportscli"
7
+ version = "0.1.0"
8
+ description = "Terminal sports data CLI"
9
+ readme = "README.md"
10
+ requires-python = ">=3.10"
11
+ dependencies = [
12
+ "typer",
13
+ "requests",
14
+ "rich"
15
+ ]
16
+
17
+ [project.scripts]
18
+ sports = "sportscli.cli:app"
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
File without changes
@@ -0,0 +1,14 @@
1
+ import typer
2
+
3
+ app = typer.Typer()
4
+
5
+ @app.command()
6
+ def cricket():
7
+ print("Fetching cricket scores...")
8
+
9
+ @app.command()
10
+ def chess():
11
+ print("Fetching chess tournaments...")
12
+
13
+ if __name__ == "__main__":
14
+ app()
@@ -0,0 +1,22 @@
1
+ Metadata-Version: 2.4
2
+ Name: sportscli
3
+ Version: 0.1.0
4
+ Summary: Terminal sports data CLI
5
+ Requires-Python: >=3.10
6
+ Description-Content-Type: text/markdown
7
+ Requires-Dist: typer
8
+ Requires-Dist: requests
9
+ Requires-Dist: rich
10
+
11
+ # sportscli
12
+
13
+ Sports data in terminal.
14
+
15
+ ## Install
16
+
17
+ pip install sportscli
18
+
19
+ ## Usage
20
+
21
+ sports cricket
22
+ sports chess
@@ -0,0 +1,10 @@
1
+ README.md
2
+ pyproject.toml
3
+ sportscli/__init__.py
4
+ sportscli/cli.py
5
+ sportscli.egg-info/PKG-INFO
6
+ sportscli.egg-info/SOURCES.txt
7
+ sportscli.egg-info/dependency_links.txt
8
+ sportscli.egg-info/entry_points.txt
9
+ sportscli.egg-info/requires.txt
10
+ sportscli.egg-info/top_level.txt
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ sports = sportscli.cli:app
@@ -0,0 +1,3 @@
1
+ typer
2
+ requests
3
+ rich
@@ -0,0 +1 @@
1
+ sportscli