funcade 0.1.0__tar.gz → 0.1.1__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.
- funcade-0.1.1/.gitignore +23 -0
- {funcade-0.1.0 → funcade-0.1.1}/PKG-INFO +6 -2
- {funcade-0.1.0 → funcade-0.1.1}/README.md +5 -1
- {funcade-0.1.0 → funcade-0.1.1}/pyproject.toml +1 -1
- {funcade-0.1.0 → funcade-0.1.1}/LICENSE +0 -0
- {funcade-0.1.0 → funcade-0.1.1}/funcade/__init__.py +0 -0
- {funcade-0.1.0 → funcade-0.1.1}/funcade/__main__.py +0 -0
- {funcade-0.1.0 → funcade-0.1.1}/funcade/colors.py +0 -0
- {funcade-0.1.0 → funcade-0.1.1}/funcade/core.py +0 -0
- {funcade-0.1.0 → funcade-0.1.1}/funcade/input.py +0 -0
- {funcade-0.1.0 → funcade-0.1.1}/funcade/screen.py +0 -0
- {funcade-0.1.0 → funcade-0.1.1}/funcade/storage.py +0 -0
- {funcade-0.1.0 → funcade-0.1.1}/main.py +0 -0
- {funcade-0.1.0 → funcade-0.1.1}/render.py +0 -0
- {funcade-0.1.0 → funcade-0.1.1}/state.py +0 -0
- {funcade-0.1.0 → funcade-0.1.1}/update.py +0 -0
funcade-0.1.1/.gitignore
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
# Byte-compiled / optimized / DLL files
|
|
2
|
+
__pycache__/
|
|
3
|
+
*.py[cod]
|
|
4
|
+
*$py.class
|
|
5
|
+
|
|
6
|
+
# Distribution / packaging
|
|
7
|
+
dist/
|
|
8
|
+
build/
|
|
9
|
+
*.egg-info/
|
|
10
|
+
|
|
11
|
+
# Virtual environments
|
|
12
|
+
venv/
|
|
13
|
+
.venv/
|
|
14
|
+
env/
|
|
15
|
+
.env/
|
|
16
|
+
|
|
17
|
+
# IDEs
|
|
18
|
+
.vscode/
|
|
19
|
+
.idea/
|
|
20
|
+
|
|
21
|
+
# OS
|
|
22
|
+
.DS_Store
|
|
23
|
+
Thumbs.db
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: funcade
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.1
|
|
4
4
|
Summary: Functional console game engine
|
|
5
5
|
Author-email: Dursun <dursunhasanov06@gmail.com>
|
|
6
6
|
License-File: LICENSE
|
|
@@ -10,6 +10,9 @@ Classifier: Programming Language :: Python :: 3
|
|
|
10
10
|
Requires-Python: >=3.10
|
|
11
11
|
Description-Content-Type: text/markdown
|
|
12
12
|
|
|
13
|
+
###
|
|
14
|
+
GINHUB: https://github.com/Dursun2000/funcade_engine
|
|
15
|
+
|
|
13
16
|
# funcade 🎮
|
|
14
17
|
|
|
15
18
|
A lightweight, functional console game engine for Python. Build retro 2D grid-based terminal games with ease!
|
|
@@ -33,4 +36,5 @@ A lightweight, functional console game engine for Python. Build retro 2D grid-ba
|
|
|
33
36
|
You can install `funcade` directly from PyPI:
|
|
34
37
|
|
|
35
38
|
```bash
|
|
36
|
-
pip install funcade
|
|
39
|
+
pip install funcade
|
|
40
|
+
|
|
@@ -1,3 +1,6 @@
|
|
|
1
|
+
###
|
|
2
|
+
GINHUB: https://github.com/Dursun2000/funcade_engine
|
|
3
|
+
|
|
1
4
|
# funcade 🎮
|
|
2
5
|
|
|
3
6
|
A lightweight, functional console game engine for Python. Build retro 2D grid-based terminal games with ease!
|
|
@@ -21,4 +24,5 @@ A lightweight, functional console game engine for Python. Build retro 2D grid-ba
|
|
|
21
24
|
You can install `funcade` directly from PyPI:
|
|
22
25
|
|
|
23
26
|
```bash
|
|
24
|
-
pip install funcade
|
|
27
|
+
pip install funcade
|
|
28
|
+
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|