tinyecs 0.3.4__tar.gz → 0.3.5__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.
Files changed (25) hide show
  1. tinyecs-0.3.5/PKG-INFO +90 -0
  2. {tinyecs-0.3.4 → tinyecs-0.3.5}/pyproject.toml +2 -2
  3. tinyecs-0.3.5/src/tinyecs.egg-info/PKG-INFO +90 -0
  4. tinyecs-0.3.4/PKG-INFO +0 -17
  5. tinyecs-0.3.4/src/tinyecs.egg-info/PKG-INFO +0 -17
  6. {tinyecs-0.3.4 → tinyecs-0.3.5}/LICENSE +0 -0
  7. {tinyecs-0.3.4 → tinyecs-0.3.5}/README.rst +0 -0
  8. {tinyecs-0.3.4 → tinyecs-0.3.5}/setup.cfg +0 -0
  9. {tinyecs-0.3.4 → tinyecs-0.3.5}/src/tinyecs/__init__.py +0 -0
  10. {tinyecs-0.3.4 → tinyecs-0.3.5}/src/tinyecs/components.py +0 -0
  11. {tinyecs-0.3.4 → tinyecs-0.3.5}/src/tinyecs/compsys.py +0 -0
  12. {tinyecs-0.3.4 → tinyecs-0.3.5}/src/tinyecs/demo.py +0 -0
  13. {tinyecs-0.3.4 → tinyecs-0.3.5}/src/tinyecs/demos/__init__.py +0 -0
  14. {tinyecs-0.3.4 → tinyecs-0.3.5}/src/tinyecs/demos/background.py +0 -0
  15. {tinyecs-0.3.4 → tinyecs-0.3.5}/src/tinyecs/demos/bouncing_sprites.py +0 -0
  16. {tinyecs-0.3.4 → tinyecs-0.3.5}/src/tinyecs/demos/example.py +0 -0
  17. {tinyecs-0.3.4 → tinyecs-0.3.5}/src/tinyecs/demos/homing-missiles.py +0 -0
  18. {tinyecs-0.3.4 → tinyecs-0.3.5}/src/tinyecs/demos/marquee.py +0 -0
  19. {tinyecs-0.3.4 → tinyecs-0.3.5}/src/tinyecs/tutorial.py +0 -0
  20. {tinyecs-0.3.4 → tinyecs-0.3.5}/src/tinyecs.egg-info/SOURCES.txt +0 -0
  21. {tinyecs-0.3.4 → tinyecs-0.3.5}/src/tinyecs.egg-info/dependency_links.txt +0 -0
  22. {tinyecs-0.3.4 → tinyecs-0.3.5}/src/tinyecs.egg-info/entry_points.txt +0 -0
  23. {tinyecs-0.3.4 → tinyecs-0.3.5}/src/tinyecs.egg-info/requires.txt +0 -0
  24. {tinyecs-0.3.4 → tinyecs-0.3.5}/src/tinyecs.egg-info/top_level.txt +0 -0
  25. {tinyecs-0.3.4 → tinyecs-0.3.5}/tests/test_tinyecs.py +0 -0
tinyecs-0.3.5/PKG-INFO ADDED
@@ -0,0 +1,90 @@
1
+ Metadata-Version: 2.4
2
+ Name: tinyecs
3
+ Version: 0.3.5
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/x-rst
15
+ License-File: LICENSE
16
+ Requires-Dist: pgcooldown
17
+ Dynamic: license-file
18
+
19
+ Introduction
20
+ ############
21
+
22
+ ECS stands for Entity Component System, and it is a programming paradigm that
23
+ differs from the well known OO.
24
+
25
+ During my research I stumbled over `this article`_ and after reading part 2 and
26
+ 3, I decided to implement an ECS myself, well aware that `esper` is a solid
27
+ and long existing implementation, but I wanted to see how to implement it
28
+ myself.
29
+
30
+ .. _this article: https://web.archive.org/web/20250408195932/https://t-machine.org/index.php/2007/09/03/entity-systems-are-the-future-of-mmog-development-part-1/
31
+
32
+
33
+ I'm not trying to sell you an ECS by explaining the problems of multiple
34
+ inheritance in game programming. There are articles out there that do this in
35
+ much detail. If you're here, you're already interested in the concept, so
36
+ the tutorial might be a good starting point. It will create a small demo with
37
+ bouncing sprites using pygame-ce. But tinyecs is platform agnostic, you can
38
+ use it with whatever library you like.
39
+
40
+
41
+ Installation
42
+ ============
43
+
44
+ tinyecs is available on pip and can be installed by::
45
+
46
+ pip install tinyecs
47
+
48
+ The project is maintained and hosted on `github`_, where you also can find the
49
+ wheels for a local install, or install it directly from the cloned repo.
50
+
51
+ .. _github: https://github.com/dickerdackel/tinyecs
52
+
53
+ .. code-block::
54
+
55
+ git clone https://github.com/dickerdackel/tinyecs
56
+ cd tinyecs
57
+ python3 -m venv --prompt tinyecs .venv
58
+ .venv/bin/activate
59
+ # or .venv/Scripts/activate.bat on windows
60
+ pip install .
61
+
62
+ Documentation
63
+ =============
64
+
65
+ The project home and main documentation is on `Read the Docs`_.
66
+
67
+ .. _Read the Docs: https://tinyecs.readthedocs.io/
68
+
69
+ Support / Contributing
70
+ ======================
71
+
72
+ Issues can be opened on `github issues`_
73
+
74
+ .. _github issues: https://github.com/dickerdackel/tinyecs/issues
75
+
76
+ Please respect, that I don't want any contributions done with the assistance
77
+ of AI. This is a hobby project with focus on the craft of programming. I
78
+ have experimentally used AI to audit parts of the code and documentation, and
79
+ while it found a lot of typos and 2 actual issues, without exception, the
80
+ provided solutions were often besides the point or plain wrong.
81
+
82
+ I have no possibility to enforce that request, the simple fact that I ask for
83
+ it should be sufficient.
84
+
85
+ License
86
+ =======
87
+
88
+ This software is provided under the MIT license.
89
+
90
+ See LICENSE file for details.
@@ -1,8 +1,8 @@
1
1
  [project]
2
2
  name = "tinyecs"
3
3
  description = "The teeniest, tiniest ECS system"
4
- version = "0.3.4"
5
- readme = "README.md"
4
+ version = "0.3.5"
5
+ readme = "README.rst"
6
6
 
7
7
  authors = [
8
8
  { name="Michael Lamertz", email="michael.lamertz@gmail.com" }
@@ -0,0 +1,90 @@
1
+ Metadata-Version: 2.4
2
+ Name: tinyecs
3
+ Version: 0.3.5
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/x-rst
15
+ License-File: LICENSE
16
+ Requires-Dist: pgcooldown
17
+ Dynamic: license-file
18
+
19
+ Introduction
20
+ ############
21
+
22
+ ECS stands for Entity Component System, and it is a programming paradigm that
23
+ differs from the well known OO.
24
+
25
+ During my research I stumbled over `this article`_ and after reading part 2 and
26
+ 3, I decided to implement an ECS myself, well aware that `esper` is a solid
27
+ and long existing implementation, but I wanted to see how to implement it
28
+ myself.
29
+
30
+ .. _this article: https://web.archive.org/web/20250408195932/https://t-machine.org/index.php/2007/09/03/entity-systems-are-the-future-of-mmog-development-part-1/
31
+
32
+
33
+ I'm not trying to sell you an ECS by explaining the problems of multiple
34
+ inheritance in game programming. There are articles out there that do this in
35
+ much detail. If you're here, you're already interested in the concept, so
36
+ the tutorial might be a good starting point. It will create a small demo with
37
+ bouncing sprites using pygame-ce. But tinyecs is platform agnostic, you can
38
+ use it with whatever library you like.
39
+
40
+
41
+ Installation
42
+ ============
43
+
44
+ tinyecs is available on pip and can be installed by::
45
+
46
+ pip install tinyecs
47
+
48
+ The project is maintained and hosted on `github`_, where you also can find the
49
+ wheels for a local install, or install it directly from the cloned repo.
50
+
51
+ .. _github: https://github.com/dickerdackel/tinyecs
52
+
53
+ .. code-block::
54
+
55
+ git clone https://github.com/dickerdackel/tinyecs
56
+ cd tinyecs
57
+ python3 -m venv --prompt tinyecs .venv
58
+ .venv/bin/activate
59
+ # or .venv/Scripts/activate.bat on windows
60
+ pip install .
61
+
62
+ Documentation
63
+ =============
64
+
65
+ The project home and main documentation is on `Read the Docs`_.
66
+
67
+ .. _Read the Docs: https://tinyecs.readthedocs.io/
68
+
69
+ Support / Contributing
70
+ ======================
71
+
72
+ Issues can be opened on `github issues`_
73
+
74
+ .. _github issues: https://github.com/dickerdackel/tinyecs/issues
75
+
76
+ Please respect, that I don't want any contributions done with the assistance
77
+ of AI. This is a hobby project with focus on the craft of programming. I
78
+ have experimentally used AI to audit parts of the code and documentation, and
79
+ while it found a lot of typos and 2 actual issues, without exception, the
80
+ provided solutions were often besides the point or plain wrong.
81
+
82
+ I have no possibility to enforce that request, the simple fact that I ask for
83
+ it should be sufficient.
84
+
85
+ License
86
+ =======
87
+
88
+ This software is provided under the MIT license.
89
+
90
+ See LICENSE file for details.
tinyecs-0.3.4/PKG-INFO DELETED
@@ -1,17 +0,0 @@
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
@@ -1,17 +0,0 @@
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
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes