tinyecs 0.3.3__tar.gz → 0.3.4__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.
- tinyecs-0.3.4/PKG-INFO +17 -0
- tinyecs-0.3.3/docs/source/introduction.rst → tinyecs-0.3.4/README.rst +11 -2
- {tinyecs-0.3.3 → tinyecs-0.3.4}/pyproject.toml +2 -1
- {tinyecs-0.3.3 → tinyecs-0.3.4}/src/tinyecs/__init__.py +166 -453
- {tinyecs-0.3.3 → tinyecs-0.3.4}/src/tinyecs/tutorial.py +43 -39
- tinyecs-0.3.4/src/tinyecs.egg-info/PKG-INFO +17 -0
- {tinyecs-0.3.3 → tinyecs-0.3.4}/src/tinyecs.egg-info/SOURCES.txt +1 -8
- {tinyecs-0.3.3 → tinyecs-0.3.4}/tests/test_tinyecs.py +9 -0
- tinyecs-0.3.3/PKG-INFO +0 -77
- tinyecs-0.3.3/README.md +0 -60
- tinyecs-0.3.3/docs/Makefile +0 -20
- tinyecs-0.3.3/docs/make.bat +0 -35
- tinyecs-0.3.3/docs/source/api.rst +0 -71
- tinyecs-0.3.3/docs/source/conf.py +0 -51
- tinyecs-0.3.3/docs/source/index.rst +0 -14
- tinyecs-0.3.3/docs/source/tutorial.rst +0 -561
- tinyecs-0.3.3/src/tinyecs.egg-info/PKG-INFO +0 -77
- {tinyecs-0.3.3 → tinyecs-0.3.4}/LICENSE +0 -0
- {tinyecs-0.3.3 → tinyecs-0.3.4}/setup.cfg +0 -0
- {tinyecs-0.3.3 → tinyecs-0.3.4}/src/tinyecs/components.py +0 -0
- {tinyecs-0.3.3 → tinyecs-0.3.4}/src/tinyecs/compsys.py +0 -0
- {tinyecs-0.3.3 → tinyecs-0.3.4}/src/tinyecs/demo.py +0 -0
- {tinyecs-0.3.3 → tinyecs-0.3.4}/src/tinyecs/demos/__init__.py +0 -0
- {tinyecs-0.3.3 → tinyecs-0.3.4}/src/tinyecs/demos/background.py +0 -0
- {tinyecs-0.3.3 → tinyecs-0.3.4}/src/tinyecs/demos/bouncing_sprites.py +0 -0
- {tinyecs-0.3.3 → tinyecs-0.3.4}/src/tinyecs/demos/example.py +0 -0
- {tinyecs-0.3.3 → tinyecs-0.3.4}/src/tinyecs/demos/homing-missiles.py +0 -0
- {tinyecs-0.3.3 → tinyecs-0.3.4}/src/tinyecs/demos/marquee.py +0 -0
- {tinyecs-0.3.3 → tinyecs-0.3.4}/src/tinyecs.egg-info/dependency_links.txt +0 -0
- {tinyecs-0.3.3 → tinyecs-0.3.4}/src/tinyecs.egg-info/entry_points.txt +0 -0
- {tinyecs-0.3.3 → tinyecs-0.3.4}/src/tinyecs.egg-info/requires.txt +0 -0
- {tinyecs-0.3.3 → tinyecs-0.3.4}/src/tinyecs.egg-info/top_level.txt +0 -0
tinyecs-0.3.4/PKG-INFO
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: tinyecs
|
|
3
|
+
Version: 0.3.4
|
|
4
|
+
Summary: The teeniest, tiniest ECS system
|
|
5
|
+
Author-email: Michael Lamertz <michael.lamertz@gmail.com>
|
|
6
|
+
License-Expression: MIT
|
|
7
|
+
Project-URL: homepage, https://github.com/dickerdackel/tinyecs
|
|
8
|
+
Project-URL: bugtracker, https://github.com/DickerDackel/tinyecs/issues
|
|
9
|
+
Project-URL: docs, https://tinyecs.readthedocs.io/
|
|
10
|
+
Classifier: Development Status :: 3 - Alpha
|
|
11
|
+
Classifier: Intended Audience :: Developers
|
|
12
|
+
Classifier: Topic :: Games/Entertainment
|
|
13
|
+
Classifier: Topic :: Software Development :: Libraries :: pygame
|
|
14
|
+
Description-Content-Type: text/markdown
|
|
15
|
+
License-File: LICENSE
|
|
16
|
+
Requires-Dist: pgcooldown
|
|
17
|
+
Dynamic: license-file
|
|
@@ -32,6 +32,8 @@ wheels for a local install, or install it directly from the cloned repo.
|
|
|
32
32
|
|
|
33
33
|
.. _github: https://github.com/dickerdackel/tinyecs
|
|
34
34
|
|
|
35
|
+
.. code-block::
|
|
36
|
+
|
|
35
37
|
git clone https://github.com/dickerdackel/tinyecs
|
|
36
38
|
cd tinyecs
|
|
37
39
|
python3 -m venv --prompt tinyecs .venv
|
|
@@ -39,12 +41,19 @@ wheels for a local install, or install it directly from the cloned repo.
|
|
|
39
41
|
# or .venv/Scripts/activate.bat on windows
|
|
40
42
|
pip install .
|
|
41
43
|
|
|
44
|
+
Documentation
|
|
45
|
+
=============
|
|
46
|
+
|
|
47
|
+
The project home and main documentation is on `Read the Docs`_.
|
|
48
|
+
|
|
49
|
+
.. _Read the Docs: https://tinyecs.readthedocs.io/
|
|
50
|
+
|
|
42
51
|
Support / Contributing
|
|
43
52
|
======================
|
|
44
53
|
|
|
45
|
-
Issues can be opened on `
|
|
54
|
+
Issues can be opened on `github issues`_
|
|
46
55
|
|
|
47
|
-
..
|
|
56
|
+
.. _github issues: https://github.com/dickerdackel/tinyecs/issues
|
|
48
57
|
|
|
49
58
|
Please respect, that I don't want any contributions done with the assistance
|
|
50
59
|
of AI. This is a hobby project with focus on the craft of programming. I
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "tinyecs"
|
|
3
3
|
description = "The teeniest, tiniest ECS system"
|
|
4
|
-
version = "0.3.
|
|
4
|
+
version = "0.3.4"
|
|
5
5
|
readme = "README.md"
|
|
6
6
|
|
|
7
7
|
authors = [
|
|
@@ -30,6 +30,7 @@ tinyecs-demo = 'tinyecs.demo:main'
|
|
|
30
30
|
[project.urls]
|
|
31
31
|
homepage = "https://github.com/dickerdackel/tinyecs"
|
|
32
32
|
bugtracker = "https://github.com/DickerDackel/tinyecs/issues"
|
|
33
|
+
docs = "https://tinyecs.readthedocs.io/"
|
|
33
34
|
|
|
34
35
|
[build-system]
|
|
35
36
|
requires = ["setuptools"]
|