termsweeper 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,16 @@
1
+ Metadata-Version: 2.4
2
+ Name: termsweeper
3
+ Version: 1.0.0
4
+ Summary: I was bored and i created the game on the terminal
5
+ Author: Mr.Rutrum
6
+ Classifier: Programming Language :: Python :: 3
7
+ Classifier: License :: OSI Approved :: MIT License
8
+ Classifier: Operating System :: POSIX :: Linux
9
+ Requires-Python: >=3.7
10
+ Description-Content-Type: text/markdown
11
+
12
+ # Termsweeper (Minesweeper on the terminal)
13
+ Just a game-minesweeper on the Linux terminal.
14
+
15
+ ## Launch
16
+ Type a "minesweeper" command.
@@ -0,0 +1,5 @@
1
+ # Termsweeper (Minesweeper on the terminal)
2
+ Just a game-minesweeper on the Linux terminal.
3
+
4
+ ## Launch
5
+ Type a "minesweeper" command.
@@ -0,0 +1,21 @@
1
+ [build-system]
2
+ requires = ["setuptools>=61.0.0"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "termsweeper"
7
+ version = "1.0.0"
8
+ authors = [
9
+ { name="Mr.Rutrum"},
10
+ ]
11
+ description = "I was bored and i created the game on the terminal"
12
+ readme = "README.md"
13
+ requires-python = ">=3.7"
14
+ classifiers = [
15
+ "Programming Language :: Python :: 3",
16
+ "License :: OSI Approved :: MIT License",
17
+ "Operating System :: POSIX :: Linux",
18
+ ]
19
+
20
+ [project.scripts]
21
+ minesweeper = "termsweeper.main:run"
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
File without changes
@@ -0,0 +1,16 @@
1
+ Metadata-Version: 2.4
2
+ Name: termsweeper
3
+ Version: 1.0.0
4
+ Summary: I was bored and i created the game on the terminal
5
+ Author: Mr.Rutrum
6
+ Classifier: Programming Language :: Python :: 3
7
+ Classifier: License :: OSI Approved :: MIT License
8
+ Classifier: Operating System :: POSIX :: Linux
9
+ Requires-Python: >=3.7
10
+ Description-Content-Type: text/markdown
11
+
12
+ # Termsweeper (Minesweeper on the terminal)
13
+ Just a game-minesweeper on the Linux terminal.
14
+
15
+ ## Launch
16
+ Type a "minesweeper" command.
@@ -0,0 +1,8 @@
1
+ README.md
2
+ pyproject.toml
3
+ src/termsweeper/__init__.py
4
+ src/termsweeper.egg-info/PKG-INFO
5
+ src/termsweeper.egg-info/SOURCES.txt
6
+ src/termsweeper.egg-info/dependency_links.txt
7
+ src/termsweeper.egg-info/entry_points.txt
8
+ src/termsweeper.egg-info/top_level.txt
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ minesweeper = termsweeper.main:run
@@ -0,0 +1 @@
1
+ termsweeper