FunHub-tic-tac-toe 1.0.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,24 @@
1
+ Metadata-Version: 2.4
2
+ Name: FunHub-tic-tac-toe
3
+ Version: 1.0.0
4
+ Summary: CLI tic-tac-toe game for FunHud app-launcher
5
+ Description-Content-Type: text/markdown
6
+ Requires-Dist: pynput>=1.7.6
7
+ Requires-Dist: colorama>=0.4.6
8
+ Requires-Dist: numpy>=1.24.0
9
+ Dynamic: description
10
+ Dynamic: description-content-type
11
+ Dynamic: requires-dist
12
+ Dynamic: summary
13
+
14
+ A simply CLI tic-tac-toe game for [FunHud app-launcher](https://pypi.org/project/FunHub-app-launcher/)
15
+
16
+ ## Install
17
+ ```bash
18
+ pip install funhub-tic-tac-toe
19
+ ```
20
+ ## Quick start
21
+ Write in terminal this command to start game:
22
+ ```bash
23
+ tic-tac-toe
24
+ ```
@@ -0,0 +1,8 @@
1
+ README.md
2
+ setup.py
3
+ FunHub_tic_tac_toe.egg-info/PKG-INFO
4
+ FunHub_tic_tac_toe.egg-info/SOURCES.txt
5
+ FunHub_tic_tac_toe.egg-info/dependency_links.txt
6
+ FunHub_tic_tac_toe.egg-info/entry_points.txt
7
+ FunHub_tic_tac_toe.egg-info/requires.txt
8
+ FunHub_tic_tac_toe.egg-info/top_level.txt
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ tic-tac-toe = tic_tac_toe:main
@@ -0,0 +1,3 @@
1
+ pynput>=1.7.6
2
+ colorama>=0.4.6
3
+ numpy>=1.24.0
@@ -0,0 +1,24 @@
1
+ Metadata-Version: 2.4
2
+ Name: FunHub-tic-tac-toe
3
+ Version: 1.0.0
4
+ Summary: CLI tic-tac-toe game for FunHud app-launcher
5
+ Description-Content-Type: text/markdown
6
+ Requires-Dist: pynput>=1.7.6
7
+ Requires-Dist: colorama>=0.4.6
8
+ Requires-Dist: numpy>=1.24.0
9
+ Dynamic: description
10
+ Dynamic: description-content-type
11
+ Dynamic: requires-dist
12
+ Dynamic: summary
13
+
14
+ A simply CLI tic-tac-toe game for [FunHud app-launcher](https://pypi.org/project/FunHub-app-launcher/)
15
+
16
+ ## Install
17
+ ```bash
18
+ pip install funhub-tic-tac-toe
19
+ ```
20
+ ## Quick start
21
+ Write in terminal this command to start game:
22
+ ```bash
23
+ tic-tac-toe
24
+ ```
@@ -0,0 +1,11 @@
1
+ A simply CLI tic-tac-toe game for [FunHud app-launcher](https://pypi.org/project/FunHub-app-launcher/)
2
+
3
+ ## Install
4
+ ```bash
5
+ pip install funhub-tic-tac-toe
6
+ ```
7
+ ## Quick start
8
+ Write in terminal this command to start game:
9
+ ```bash
10
+ tic-tac-toe
11
+ ```
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1,24 @@
1
+ from setuptools import setup, find_packages
2
+
3
+ with open("README.md", "r", encoding="utf-8") as fh:
4
+ long_description = fh.read()
5
+
6
+ setup(
7
+ name="FunHub-tic-tac-toe",
8
+ version="1.0.0",
9
+ py_modules=["tic_tac_toe"],
10
+ description="CLI tic-tac-toe game for FunHud app-launcher",
11
+ long_description=open("README.md", encoding="utf-8").read(),
12
+ long_description_content_type="text/markdown",
13
+ packages=find_packages(),
14
+ install_requires=[
15
+ "pynput>=1.7.6",
16
+ "colorama>=0.4.6",
17
+ "numpy>=1.24.0",
18
+ ],
19
+ entry_points={
20
+ 'console_scripts': [
21
+ 'tic-tac-toe=tic_tac_toe:main',
22
+ ],
23
+ },
24
+ )