OrecchietTetris 0.1.3__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.
- orecchiettetris-0.1.3/LICENSE +201 -0
- orecchiettetris-0.1.3/OrecchietTetris/__init__.py +26 -0
- orecchiettetris-0.1.3/OrecchietTetris/__main__.py +3 -0
- orecchiettetris-0.1.3/OrecchietTetris/gui/TetrisGui.py +5 -0
- orecchiettetris-0.1.3/OrecchietTetris/gui/__init__.py +3 -0
- orecchiettetris-0.1.3/OrecchietTetris/model/__init__.py +5 -0
- orecchiettetris-0.1.3/OrecchietTetris/model/board.py +3 -0
- orecchiettetris-0.1.3/OrecchietTetris/model/tetris.py +6 -0
- orecchiettetris-0.1.3/OrecchietTetris/model/tetromino.py +3 -0
- orecchiettetris-0.1.3/OrecchietTetris/utils/__init__.py +3 -0
- orecchiettetris-0.1.3/OrecchietTetris/utils/observer_subject.py +25 -0
- orecchiettetris-0.1.3/PKG-INFO +175 -0
- orecchiettetris-0.1.3/README.md +151 -0
- orecchiettetris-0.1.3/pyproject.toml +91 -0
|
@@ -0,0 +1,201 @@
|
|
|
1
|
+
Apache License
|
|
2
|
+
Version 2.0, January 2004
|
|
3
|
+
http://www.apache.org/licenses/
|
|
4
|
+
|
|
5
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
6
|
+
|
|
7
|
+
1. Definitions.
|
|
8
|
+
|
|
9
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
|
10
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
|
11
|
+
|
|
12
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
|
13
|
+
the copyright owner that is granting the License.
|
|
14
|
+
|
|
15
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
|
16
|
+
other entities that control, are controlled by, or are under common
|
|
17
|
+
control with that entity. For the purposes of this definition,
|
|
18
|
+
"control" means (i) the power, direct or indirect, to cause the
|
|
19
|
+
direction or management of such entity, whether by contract or
|
|
20
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
|
21
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
|
22
|
+
|
|
23
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
|
24
|
+
exercising permissions granted by this License.
|
|
25
|
+
|
|
26
|
+
"Source" form shall mean the preferred form for making modifications,
|
|
27
|
+
including but not limited to software source code, documentation
|
|
28
|
+
source, and configuration files.
|
|
29
|
+
|
|
30
|
+
"Object" form shall mean any form resulting from mechanical
|
|
31
|
+
transformation or translation of a Source form, including but
|
|
32
|
+
not limited to compiled object code, generated documentation,
|
|
33
|
+
and conversions to other media types.
|
|
34
|
+
|
|
35
|
+
"Work" shall mean the work of authorship, whether in Source or
|
|
36
|
+
Object form, made available under the License, as indicated by a
|
|
37
|
+
copyright notice that is included in or attached to the work
|
|
38
|
+
(an example is provided in the Appendix below).
|
|
39
|
+
|
|
40
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
|
41
|
+
form, that is based on (or derived from) the Work and for which the
|
|
42
|
+
editorial revisions, annotations, elaborations, or other modifications
|
|
43
|
+
represent, as a whole, an original work of authorship. For the purposes
|
|
44
|
+
of this License, Derivative Works shall not include works that remain
|
|
45
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
|
46
|
+
the Work and Derivative Works thereof.
|
|
47
|
+
|
|
48
|
+
"Contribution" shall mean any work of authorship, including
|
|
49
|
+
the original version of the Work and any modifications or additions
|
|
50
|
+
to that Work or Derivative Works thereof, that is intentionally
|
|
51
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
|
52
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
|
53
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
|
54
|
+
means any form of electronic, verbal, or written communication sent
|
|
55
|
+
to the Licensor or its representatives, including but not limited to
|
|
56
|
+
communication on electronic mailing lists, source code control systems,
|
|
57
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
|
58
|
+
Licensor for the purpose of discussing and improving the Work, but
|
|
59
|
+
excluding communication that is conspicuously marked or otherwise
|
|
60
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
|
61
|
+
|
|
62
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
|
63
|
+
on behalf of whom a Contribution has been received by Licensor and
|
|
64
|
+
subsequently incorporated within the Work.
|
|
65
|
+
|
|
66
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
|
67
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
68
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
69
|
+
copyright license to reproduce, prepare Derivative Works of,
|
|
70
|
+
publicly display, publicly perform, sublicense, and distribute the
|
|
71
|
+
Work and such Derivative Works in Source or Object form.
|
|
72
|
+
|
|
73
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
|
74
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
75
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
76
|
+
(except as stated in this section) patent license to make, have made,
|
|
77
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
|
78
|
+
where such license applies only to those patent claims licensable
|
|
79
|
+
by such Contributor that are necessarily infringed by their
|
|
80
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
|
81
|
+
with the Work to which such Contribution(s) was submitted. If You
|
|
82
|
+
institute patent litigation against any entity (including a
|
|
83
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
|
84
|
+
or a Contribution incorporated within the Work constitutes direct
|
|
85
|
+
or contributory patent infringement, then any patent licenses
|
|
86
|
+
granted to You under this License for that Work shall terminate
|
|
87
|
+
as of the date such litigation is filed.
|
|
88
|
+
|
|
89
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
|
90
|
+
Work or Derivative Works thereof in any medium, with or without
|
|
91
|
+
modifications, and in Source or Object form, provided that You
|
|
92
|
+
meet the following conditions:
|
|
93
|
+
|
|
94
|
+
(a) You must give any other recipients of the Work or
|
|
95
|
+
Derivative Works a copy of this License; and
|
|
96
|
+
|
|
97
|
+
(b) You must cause any modified files to carry prominent notices
|
|
98
|
+
stating that You changed the files; and
|
|
99
|
+
|
|
100
|
+
(c) You must retain, in the Source form of any Derivative Works
|
|
101
|
+
that You distribute, all copyright, patent, trademark, and
|
|
102
|
+
attribution notices from the Source form of the Work,
|
|
103
|
+
excluding those notices that do not pertain to any part of
|
|
104
|
+
the Derivative Works; and
|
|
105
|
+
|
|
106
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
|
107
|
+
distribution, then any Derivative Works that You distribute must
|
|
108
|
+
include a readable copy of the attribution notices contained
|
|
109
|
+
within such NOTICE file, excluding those notices that do not
|
|
110
|
+
pertain to any part of the Derivative Works, in at least one
|
|
111
|
+
of the following places: within a NOTICE text file distributed
|
|
112
|
+
as part of the Derivative Works; within the Source form or
|
|
113
|
+
documentation, if provided along with the Derivative Works; or,
|
|
114
|
+
within a display generated by the Derivative Works, if and
|
|
115
|
+
wherever such third-party notices normally appear. The contents
|
|
116
|
+
of the NOTICE file are for informational purposes only and
|
|
117
|
+
do not modify the License. You may add Your own attribution
|
|
118
|
+
notices within Derivative Works that You distribute, alongside
|
|
119
|
+
or as an addendum to the NOTICE text from the Work, provided
|
|
120
|
+
that such additional attribution notices cannot be construed
|
|
121
|
+
as modifying the License.
|
|
122
|
+
|
|
123
|
+
You may add Your own copyright statement to Your modifications and
|
|
124
|
+
may provide additional or different license terms and conditions
|
|
125
|
+
for use, reproduction, or distribution of Your modifications, or
|
|
126
|
+
for any such Derivative Works as a whole, provided Your use,
|
|
127
|
+
reproduction, and distribution of the Work otherwise complies with
|
|
128
|
+
the conditions stated in this License.
|
|
129
|
+
|
|
130
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
|
131
|
+
any Contribution intentionally submitted for inclusion in the Work
|
|
132
|
+
by You to the Licensor shall be under the terms and conditions of
|
|
133
|
+
this License, without any additional terms or conditions.
|
|
134
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
|
135
|
+
the terms of any separate license agreement you may have executed
|
|
136
|
+
with Licensor regarding such Contributions.
|
|
137
|
+
|
|
138
|
+
6. Trademarks. This License does not grant permission to use the trade
|
|
139
|
+
names, trademarks, service marks, or product names of the Licensor,
|
|
140
|
+
except as required for reasonable and customary use in describing the
|
|
141
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
|
142
|
+
|
|
143
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
|
144
|
+
agreed to in writing, Licensor provides the Work (and each
|
|
145
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
|
146
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
147
|
+
implied, including, without limitation, any warranties or conditions
|
|
148
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
|
149
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
|
150
|
+
appropriateness of using or redistributing the Work and assume any
|
|
151
|
+
risks associated with Your exercise of permissions under this License.
|
|
152
|
+
|
|
153
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
|
154
|
+
whether in tort (including negligence), contract, or otherwise,
|
|
155
|
+
unless required by applicable law (such as deliberate and grossly
|
|
156
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
|
157
|
+
liable to You for damages, including any direct, indirect, special,
|
|
158
|
+
incidental, or consequential damages of any character arising as a
|
|
159
|
+
result of this License or out of the use or inability to use the
|
|
160
|
+
Work (including but not limited to damages for loss of goodwill,
|
|
161
|
+
work stoppage, computer failure or malfunction, or any and all
|
|
162
|
+
other commercial damages or losses), even if such Contributor
|
|
163
|
+
has been advised of the possibility of such damages.
|
|
164
|
+
|
|
165
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
|
166
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
|
167
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
|
168
|
+
or other liability obligations and/or rights consistent with this
|
|
169
|
+
License. However, in accepting such obligations, You may act only
|
|
170
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
|
171
|
+
of any other Contributor, and only if You agree to indemnify,
|
|
172
|
+
defend, and hold each Contributor harmless for any liability
|
|
173
|
+
incurred by, or claims asserted against, such Contributor by reason
|
|
174
|
+
of your accepting any such warranty or additional liability.
|
|
175
|
+
|
|
176
|
+
END OF TERMS AND CONDITIONS
|
|
177
|
+
|
|
178
|
+
APPENDIX: How to apply the Apache License to your work.
|
|
179
|
+
|
|
180
|
+
To apply the Apache License to your work, attach the following
|
|
181
|
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
|
182
|
+
replaced with your own identifying information. (Don't include
|
|
183
|
+
the brackets!) The text should be enclosed in the appropriate
|
|
184
|
+
comment syntax for the file format. We also recommend that a
|
|
185
|
+
file or class name and description of purpose be included on the
|
|
186
|
+
same "printed page" as the copyright notice for easier
|
|
187
|
+
identification within third-party archives.
|
|
188
|
+
|
|
189
|
+
Copyright 2021 PIKA-lab / eXplanable AI
|
|
190
|
+
|
|
191
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
192
|
+
you may not use this file except in compliance with the License.
|
|
193
|
+
You may obtain a copy of the License at
|
|
194
|
+
|
|
195
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
196
|
+
|
|
197
|
+
Unless required by applicable law or agreed to in writing, software
|
|
198
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
199
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
200
|
+
See the License for the specific language governing permissions and
|
|
201
|
+
limitations under the License.
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import logging
|
|
2
|
+
|
|
3
|
+
logging.basicConfig(level=logging.DEBUG)
|
|
4
|
+
logger = logging.getLogger('OrecchietTetris')
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
# this is the initial module of your app
|
|
8
|
+
# this is executed whenever some client-code is calling
|
|
9
|
+
# `import OrecchietTetris` or `from OrecchietTetris import ...`
|
|
10
|
+
# put your main classes here, eg:
|
|
11
|
+
class MyClass:
|
|
12
|
+
def my_method(self) -> str:
|
|
13
|
+
return "Hello World"
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
def main() -> None:
|
|
17
|
+
# this is the main module of your app
|
|
18
|
+
# it is only required if your project must be runnable
|
|
19
|
+
# this is the script to be executed whenever some users
|
|
20
|
+
# writes `python -m OrecchietTetris-artifact` on the command line, eg.
|
|
21
|
+
x = MyClass().my_method()
|
|
22
|
+
print(x)
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
# let this be the last line of this file
|
|
26
|
+
logger.info("OrecchietTetris loaded")
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
from __future__ import annotations
|
|
2
|
+
|
|
3
|
+
from typing import List, Any
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
class Subject:
|
|
7
|
+
def __init__(self) -> None:
|
|
8
|
+
self._observers: List[Observer] = []
|
|
9
|
+
|
|
10
|
+
def attach(self, observer: Observer) -> None:
|
|
11
|
+
if observer not in self._observers:
|
|
12
|
+
self._observers.append(observer)
|
|
13
|
+
|
|
14
|
+
def detach(self, observer: Observer) -> None:
|
|
15
|
+
if observer in self._observers:
|
|
16
|
+
self._observers.remove(observer)
|
|
17
|
+
|
|
18
|
+
def notify(self, event_type: str, data: Any = None) -> None:
|
|
19
|
+
for observer in self._observers:
|
|
20
|
+
observer.update(event_type, data)
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
class Observer:
|
|
24
|
+
def update(self, event_type: str, data: Any) -> None:
|
|
25
|
+
pass
|
|
@@ -0,0 +1,175 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: OrecchietTetris
|
|
3
|
+
Version: 0.1.3
|
|
4
|
+
Summary: Tetris with Apulian elements - a Software Engineering project.
|
|
5
|
+
License: Apache 2.0
|
|
6
|
+
License-File: LICENSE
|
|
7
|
+
Keywords: tetris,game,software engineering
|
|
8
|
+
Author: Mariagrazia Colonna
|
|
9
|
+
Author-email: mariagrazia.colonna@studio.unibo.it
|
|
10
|
+
Requires-Python: >=3.11.0,<4.0.0
|
|
11
|
+
Classifier: Development Status :: 4 - Beta
|
|
12
|
+
Classifier: Intended Audience :: Developers
|
|
13
|
+
Classifier: License :: Other/Proprietary License
|
|
14
|
+
Classifier: Programming Language :: Python :: 3
|
|
15
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
16
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
18
|
+
Classifier: Programming Language :: Python :: 3.14
|
|
19
|
+
Requires-Dist: python-i18n (>=0.3.9,<0.4.0)
|
|
20
|
+
Project-URL: Homepage, https://github.com/unibo-dtm-se-2425-OrecchietTetris/OrecchietTetris-artifact
|
|
21
|
+
Project-URL: Repository, https://github.com/unibo-dtm-se-2425-OrecchietTetris/OrecchietTetris-artifact
|
|
22
|
+
Description-Content-Type: text/markdown
|
|
23
|
+
|
|
24
|
+
# Python project template
|
|
25
|
+
|
|
26
|
+
A simple template of Python projects, with a rigid file structure, and predisposition for unit testing and release on PyPi.
|
|
27
|
+
|
|
28
|
+
## Relevant features
|
|
29
|
+
|
|
30
|
+
- All your project code into a single main package (`OrecchietTetris-artifact/`)
|
|
31
|
+
- All your project tests into a single test package (`test/`)
|
|
32
|
+
- Unit testing support via [`unittest`](https://docs.python.org/3/library/unittest.html)
|
|
33
|
+
- Automatic testing on all branches via GitHub Actions
|
|
34
|
+
- Semi-automatic versioning via Git
|
|
35
|
+
- Packaging support via [`setuptools`](https://setuptools.pypa.io/en/latest/setuptools.html)
|
|
36
|
+
- Automatic release on [PyPi](https://pypi.org/) via GitHub Actions and [`semantic-release`](https://semantic-release.gitbook.io)
|
|
37
|
+
- Automatic dependencies updates via [Renovate](https://docs.renovatebot.com/)
|
|
38
|
+
|
|
39
|
+
## Project structure
|
|
40
|
+
|
|
41
|
+
Overview:
|
|
42
|
+
```bash
|
|
43
|
+
<root directory>
|
|
44
|
+
├── OrecchietTetris/ # main package (should be named after your project)
|
|
45
|
+
│ ├── __init__.py # python package marker
|
|
46
|
+
│ └── __main__.py # application entry point
|
|
47
|
+
├── tests/ # test package (should contain unit tests)
|
|
48
|
+
├── .github/ # configuration of GitHub CI
|
|
49
|
+
│ └── workflows/ # configuration of GitHub Workflows
|
|
50
|
+
│ ├── check.yml # runs tests on multiple OS and versions of Python
|
|
51
|
+
│ └── deploy.yml # if check succeeds, and the current branch is one of {main, master}, triggers automatic releas on PyPi
|
|
52
|
+
├── LICENSE # license file (Apache 2.0 by default)
|
|
53
|
+
├── pyproject.toml # project configuration file as prescribed by Poetry
|
|
54
|
+
├── renovate.json # configuration of Renovate bot, for automatic dependency updates
|
|
55
|
+
├── requirements.txt # only declares a dependency on Poetry. DO NOT EDIT THIS FILE
|
|
56
|
+
└── release.config.js # script to release on PyPi, and GitHub via semantic-release
|
|
57
|
+
```
|
|
58
|
+
|
|
59
|
+
## TODO-list for template usage
|
|
60
|
+
|
|
61
|
+
1. Use this template to create a new GitHub repository, say `OrecchietTetris-artifact`
|
|
62
|
+
- this name will also be used to identify the package on PyPi
|
|
63
|
+
+ so, we suggest choosing a name which has not been used on PyPi, yet
|
|
64
|
+
+ we also suggest choosing a name which is a valid Python package name (i.e. `using_snake_case`)
|
|
65
|
+
|
|
66
|
+
2. Clone the `OrecchietTetris-artifact` repository
|
|
67
|
+
|
|
68
|
+
3. Open a shell into your local `OrecchietTetris-artifact` directory and run
|
|
69
|
+
```bash
|
|
70
|
+
./rename-template.sh OrecchietTetris-artifact
|
|
71
|
+
```
|
|
72
|
+
|
|
73
|
+
This will coherently rename the template's project name with the one chosen by you (i.e. `OrecchietTetris-artifact`, in this example)
|
|
74
|
+
|
|
75
|
+
* __Remark__: this step is now automatic thanks to the `init.yml` workflow which is triggered when using this template to create a new repository
|
|
76
|
+
|
|
77
|
+
4. Commit & push
|
|
78
|
+
|
|
79
|
+
5. Ensure you like the [Apache 2.0 License](https://www.apache.org/licenses/LICENSE-2.0.html). If you don't, change the content of the `LICENSE` file
|
|
80
|
+
|
|
81
|
+
6. Ensure the versions-range of Python reported in `pyproject.toml` fits the versions you want to support
|
|
82
|
+
+ currently defaults to `>= 3.9`
|
|
83
|
+
+ if you change this, please also change the versions of Python tests should be run on in CI, by looking the file `.github/workflows/check.yml`
|
|
84
|
+
|
|
85
|
+
7. Check the Python version and OS tests should be run on in CI, by looking the file `.github/workflows/check.yml`
|
|
86
|
+
|
|
87
|
+
8. Add your runtime, development, and build dependencies to `pyproject.toml`
|
|
88
|
+
|
|
89
|
+
9. Check the other metadata in `pyproject.toml`
|
|
90
|
+
|
|
91
|
+
10. Change the assignee for pull-requests for automatic dependency updates by editing `renovate.json`
|
|
92
|
+
+ currently defaults to @gciatto
|
|
93
|
+
|
|
94
|
+
11. Add your PyPI credentials as secrets of the GitHub repository
|
|
95
|
+
- `PYPI_USERNAME` (resp. `PYPI_PASSWORD`) for your username (resp. password)
|
|
96
|
+
- this may require you to register on PyPi first
|
|
97
|
+
- Note: PyPI no longer allows authentication with a username and password. Please follow these steps instead:
|
|
98
|
+
1. Authenticate on PyPi
|
|
99
|
+
2. Go to your account settings and generate a new API token
|
|
100
|
+
3. Add the API Token to the `PYPI_PASSWORD` secret
|
|
101
|
+
4. Add the string `__token__` to the `PYPI_USERNAME` secret
|
|
102
|
+
|
|
103
|
+
12. Generate a GitHub token and add it as a secret of the GitHub repository, named `RELEASE_TOKEN`
|
|
104
|
+
- cf. <https://docs.github.com/en/authentication/keeping-your-account-and-data-secure/managing-your-personal-access-tokens#creating-a-personal-access-token-classic>
|
|
105
|
+
- the token must allow pushing to the repository
|
|
106
|
+
|
|
107
|
+
13. Put your main (resp. test) code in `OrecchietTetris-artifact/` (resp. `test/`)
|
|
108
|
+
|
|
109
|
+
## How to do stuff
|
|
110
|
+
|
|
111
|
+
### Restore dev dependencies
|
|
112
|
+
|
|
113
|
+
1. Install Poetry if you don't have it yet
|
|
114
|
+
```bash
|
|
115
|
+
pip install -r requirements.txt
|
|
116
|
+
```
|
|
117
|
+
|
|
118
|
+
2. Install the project's dependencies
|
|
119
|
+
```bash
|
|
120
|
+
poetry install
|
|
121
|
+
```
|
|
122
|
+
|
|
123
|
+
### Run unit tests
|
|
124
|
+
|
|
125
|
+
```bash
|
|
126
|
+
poetry run poe test
|
|
127
|
+
```
|
|
128
|
+
|
|
129
|
+
> Tests are automatically run in CI, on all pushes on all branches.
|
|
130
|
+
> There, tests are executed on multiple OS (Win, Mac, Ubuntu) and on multiple Python versions.
|
|
131
|
+
|
|
132
|
+
### Run your code as an application
|
|
133
|
+
|
|
134
|
+
This will execute the `__main__.py` file in the `OrecchietTetris-artifact` package:
|
|
135
|
+
```bash
|
|
136
|
+
python -m OrecchietTetris-artifact
|
|
137
|
+
```
|
|
138
|
+
|
|
139
|
+
or alternatively:
|
|
140
|
+
```bash
|
|
141
|
+
OrecchietTetris-artifact
|
|
142
|
+
```
|
|
143
|
+
|
|
144
|
+
the latter is possible because of the script defined in the `pyproject.toml` file.
|
|
145
|
+
|
|
146
|
+
### Release a new version on PyPi
|
|
147
|
+
|
|
148
|
+
New versions are automatically released on PyPi via GitHub Actions, when a push is made on the `main` or `master` branch.
|
|
149
|
+
|
|
150
|
+
The version number is updated automatically by the `semantic-release` tool, which uses the commit messages to infer the type of the release (major, minor, patch).
|
|
151
|
+
|
|
152
|
+
It is paramount that the commit messages follow the [Conventional Commits](https://www.conventionalcommits.org/en/v1.0.0/) specification,
|
|
153
|
+
in order for `semantic-release` to compute version numbers correctly.
|
|
154
|
+
|
|
155
|
+
## Automatic updates of dependencies (via Renovate)
|
|
156
|
+
|
|
157
|
+
The project is configured to use [Renovate](https://docs.renovatebot.com/) to automatically open pull-requests
|
|
158
|
+
to update dependencies declared in `pyproject.toml`.
|
|
159
|
+
|
|
160
|
+
By default, Renovate will assign such pull-requests to the user who created the repository from this template.
|
|
161
|
+
|
|
162
|
+
If the project has tests (which is the case for this template), Renovate will only merge such pull-requests
|
|
163
|
+
if all tests pass.
|
|
164
|
+
|
|
165
|
+
When some test fails, Renovate will leave a comment on the pull-request, so that you can fix the issue manually.
|
|
166
|
+
|
|
167
|
+
To make Renovate work, you need to enable it for your repository.
|
|
168
|
+
To do so, please follow the instruction at <https://docs.renovatebot.com/getting-started/installing-onboarding/#hosted-githubcom-app>
|
|
169
|
+
|
|
170
|
+
Finally, please remember to enable PR auto-merging in your repository settings, otherwise Renovate will not be able to merge
|
|
171
|
+
the pull-requests it opens, even if all tests pass.
|
|
172
|
+
To do so, please follow the instructions available [here](https://docs.github.com/en/repositories/configuring-branches-and-merges-in-your-repository/configuring-pull-request-merges/managing-auto-merge-for-pull-requests-in-your-repository#managing-auto-merge).
|
|
173
|
+
|
|
174
|
+
> Notice that the combination between Renovate, and Semantic Release may lead to a number of releases being created automatically.
|
|
175
|
+
|
|
@@ -0,0 +1,151 @@
|
|
|
1
|
+
# Python project template
|
|
2
|
+
|
|
3
|
+
A simple template of Python projects, with a rigid file structure, and predisposition for unit testing and release on PyPi.
|
|
4
|
+
|
|
5
|
+
## Relevant features
|
|
6
|
+
|
|
7
|
+
- All your project code into a single main package (`OrecchietTetris-artifact/`)
|
|
8
|
+
- All your project tests into a single test package (`test/`)
|
|
9
|
+
- Unit testing support via [`unittest`](https://docs.python.org/3/library/unittest.html)
|
|
10
|
+
- Automatic testing on all branches via GitHub Actions
|
|
11
|
+
- Semi-automatic versioning via Git
|
|
12
|
+
- Packaging support via [`setuptools`](https://setuptools.pypa.io/en/latest/setuptools.html)
|
|
13
|
+
- Automatic release on [PyPi](https://pypi.org/) via GitHub Actions and [`semantic-release`](https://semantic-release.gitbook.io)
|
|
14
|
+
- Automatic dependencies updates via [Renovate](https://docs.renovatebot.com/)
|
|
15
|
+
|
|
16
|
+
## Project structure
|
|
17
|
+
|
|
18
|
+
Overview:
|
|
19
|
+
```bash
|
|
20
|
+
<root directory>
|
|
21
|
+
├── OrecchietTetris/ # main package (should be named after your project)
|
|
22
|
+
│ ├── __init__.py # python package marker
|
|
23
|
+
│ └── __main__.py # application entry point
|
|
24
|
+
├── tests/ # test package (should contain unit tests)
|
|
25
|
+
├── .github/ # configuration of GitHub CI
|
|
26
|
+
│ └── workflows/ # configuration of GitHub Workflows
|
|
27
|
+
│ ├── check.yml # runs tests on multiple OS and versions of Python
|
|
28
|
+
│ └── deploy.yml # if check succeeds, and the current branch is one of {main, master}, triggers automatic releas on PyPi
|
|
29
|
+
├── LICENSE # license file (Apache 2.0 by default)
|
|
30
|
+
├── pyproject.toml # project configuration file as prescribed by Poetry
|
|
31
|
+
├── renovate.json # configuration of Renovate bot, for automatic dependency updates
|
|
32
|
+
├── requirements.txt # only declares a dependency on Poetry. DO NOT EDIT THIS FILE
|
|
33
|
+
└── release.config.js # script to release on PyPi, and GitHub via semantic-release
|
|
34
|
+
```
|
|
35
|
+
|
|
36
|
+
## TODO-list for template usage
|
|
37
|
+
|
|
38
|
+
1. Use this template to create a new GitHub repository, say `OrecchietTetris-artifact`
|
|
39
|
+
- this name will also be used to identify the package on PyPi
|
|
40
|
+
+ so, we suggest choosing a name which has not been used on PyPi, yet
|
|
41
|
+
+ we also suggest choosing a name which is a valid Python package name (i.e. `using_snake_case`)
|
|
42
|
+
|
|
43
|
+
2. Clone the `OrecchietTetris-artifact` repository
|
|
44
|
+
|
|
45
|
+
3. Open a shell into your local `OrecchietTetris-artifact` directory and run
|
|
46
|
+
```bash
|
|
47
|
+
./rename-template.sh OrecchietTetris-artifact
|
|
48
|
+
```
|
|
49
|
+
|
|
50
|
+
This will coherently rename the template's project name with the one chosen by you (i.e. `OrecchietTetris-artifact`, in this example)
|
|
51
|
+
|
|
52
|
+
* __Remark__: this step is now automatic thanks to the `init.yml` workflow which is triggered when using this template to create a new repository
|
|
53
|
+
|
|
54
|
+
4. Commit & push
|
|
55
|
+
|
|
56
|
+
5. Ensure you like the [Apache 2.0 License](https://www.apache.org/licenses/LICENSE-2.0.html). If you don't, change the content of the `LICENSE` file
|
|
57
|
+
|
|
58
|
+
6. Ensure the versions-range of Python reported in `pyproject.toml` fits the versions you want to support
|
|
59
|
+
+ currently defaults to `>= 3.9`
|
|
60
|
+
+ if you change this, please also change the versions of Python tests should be run on in CI, by looking the file `.github/workflows/check.yml`
|
|
61
|
+
|
|
62
|
+
7. Check the Python version and OS tests should be run on in CI, by looking the file `.github/workflows/check.yml`
|
|
63
|
+
|
|
64
|
+
8. Add your runtime, development, and build dependencies to `pyproject.toml`
|
|
65
|
+
|
|
66
|
+
9. Check the other metadata in `pyproject.toml`
|
|
67
|
+
|
|
68
|
+
10. Change the assignee for pull-requests for automatic dependency updates by editing `renovate.json`
|
|
69
|
+
+ currently defaults to @gciatto
|
|
70
|
+
|
|
71
|
+
11. Add your PyPI credentials as secrets of the GitHub repository
|
|
72
|
+
- `PYPI_USERNAME` (resp. `PYPI_PASSWORD`) for your username (resp. password)
|
|
73
|
+
- this may require you to register on PyPi first
|
|
74
|
+
- Note: PyPI no longer allows authentication with a username and password. Please follow these steps instead:
|
|
75
|
+
1. Authenticate on PyPi
|
|
76
|
+
2. Go to your account settings and generate a new API token
|
|
77
|
+
3. Add the API Token to the `PYPI_PASSWORD` secret
|
|
78
|
+
4. Add the string `__token__` to the `PYPI_USERNAME` secret
|
|
79
|
+
|
|
80
|
+
12. Generate a GitHub token and add it as a secret of the GitHub repository, named `RELEASE_TOKEN`
|
|
81
|
+
- cf. <https://docs.github.com/en/authentication/keeping-your-account-and-data-secure/managing-your-personal-access-tokens#creating-a-personal-access-token-classic>
|
|
82
|
+
- the token must allow pushing to the repository
|
|
83
|
+
|
|
84
|
+
13. Put your main (resp. test) code in `OrecchietTetris-artifact/` (resp. `test/`)
|
|
85
|
+
|
|
86
|
+
## How to do stuff
|
|
87
|
+
|
|
88
|
+
### Restore dev dependencies
|
|
89
|
+
|
|
90
|
+
1. Install Poetry if you don't have it yet
|
|
91
|
+
```bash
|
|
92
|
+
pip install -r requirements.txt
|
|
93
|
+
```
|
|
94
|
+
|
|
95
|
+
2. Install the project's dependencies
|
|
96
|
+
```bash
|
|
97
|
+
poetry install
|
|
98
|
+
```
|
|
99
|
+
|
|
100
|
+
### Run unit tests
|
|
101
|
+
|
|
102
|
+
```bash
|
|
103
|
+
poetry run poe test
|
|
104
|
+
```
|
|
105
|
+
|
|
106
|
+
> Tests are automatically run in CI, on all pushes on all branches.
|
|
107
|
+
> There, tests are executed on multiple OS (Win, Mac, Ubuntu) and on multiple Python versions.
|
|
108
|
+
|
|
109
|
+
### Run your code as an application
|
|
110
|
+
|
|
111
|
+
This will execute the `__main__.py` file in the `OrecchietTetris-artifact` package:
|
|
112
|
+
```bash
|
|
113
|
+
python -m OrecchietTetris-artifact
|
|
114
|
+
```
|
|
115
|
+
|
|
116
|
+
or alternatively:
|
|
117
|
+
```bash
|
|
118
|
+
OrecchietTetris-artifact
|
|
119
|
+
```
|
|
120
|
+
|
|
121
|
+
the latter is possible because of the script defined in the `pyproject.toml` file.
|
|
122
|
+
|
|
123
|
+
### Release a new version on PyPi
|
|
124
|
+
|
|
125
|
+
New versions are automatically released on PyPi via GitHub Actions, when a push is made on the `main` or `master` branch.
|
|
126
|
+
|
|
127
|
+
The version number is updated automatically by the `semantic-release` tool, which uses the commit messages to infer the type of the release (major, minor, patch).
|
|
128
|
+
|
|
129
|
+
It is paramount that the commit messages follow the [Conventional Commits](https://www.conventionalcommits.org/en/v1.0.0/) specification,
|
|
130
|
+
in order for `semantic-release` to compute version numbers correctly.
|
|
131
|
+
|
|
132
|
+
## Automatic updates of dependencies (via Renovate)
|
|
133
|
+
|
|
134
|
+
The project is configured to use [Renovate](https://docs.renovatebot.com/) to automatically open pull-requests
|
|
135
|
+
to update dependencies declared in `pyproject.toml`.
|
|
136
|
+
|
|
137
|
+
By default, Renovate will assign such pull-requests to the user who created the repository from this template.
|
|
138
|
+
|
|
139
|
+
If the project has tests (which is the case for this template), Renovate will only merge such pull-requests
|
|
140
|
+
if all tests pass.
|
|
141
|
+
|
|
142
|
+
When some test fails, Renovate will leave a comment on the pull-request, so that you can fix the issue manually.
|
|
143
|
+
|
|
144
|
+
To make Renovate work, you need to enable it for your repository.
|
|
145
|
+
To do so, please follow the instruction at <https://docs.renovatebot.com/getting-started/installing-onboarding/#hosted-githubcom-app>
|
|
146
|
+
|
|
147
|
+
Finally, please remember to enable PR auto-merging in your repository settings, otherwise Renovate will not be able to merge
|
|
148
|
+
the pull-requests it opens, even if all tests pass.
|
|
149
|
+
To do so, please follow the instructions available [here](https://docs.github.com/en/repositories/configuring-branches-and-merges-in-your-repository/configuring-pull-request-merges/managing-auto-merge-for-pull-requests-in-your-repository#managing-auto-merge).
|
|
150
|
+
|
|
151
|
+
> Notice that the combination between Renovate, and Semantic Release may lead to a number of releases being created automatically.
|
|
@@ -0,0 +1,91 @@
|
|
|
1
|
+
[tool.poetry]
|
|
2
|
+
name = "OrecchietTetris"
|
|
3
|
+
packages = [
|
|
4
|
+
{ include = "OrecchietTetris" },
|
|
5
|
+
]
|
|
6
|
+
version = "0.1.3"
|
|
7
|
+
description = "Tetris with Apulian elements - a Software Engineering project."
|
|
8
|
+
authors = [
|
|
9
|
+
"Mariagrazia Colonna <mariagrazia.colonna@studio.unibo.it>",
|
|
10
|
+
"Mirko de Cillis <mirko.decillis@studio.unibo.it>",
|
|
11
|
+
"Lorenza Pennisi <lorenza.pennisi@studio.unibo.it>",
|
|
12
|
+
]
|
|
13
|
+
license = "Apache 2.0"
|
|
14
|
+
readme = "README.md"
|
|
15
|
+
homepage = "https://github.com/unibo-dtm-se-2425-OrecchietTetris/OrecchietTetris-artifact"
|
|
16
|
+
repository = "https://github.com/unibo-dtm-se-2425-OrecchietTetris/OrecchietTetris-artifact"
|
|
17
|
+
keywords = ["tetris", "game", "software engineering"]
|
|
18
|
+
classifiers = [
|
|
19
|
+
"Development Status :: 4 - Beta",
|
|
20
|
+
"Intended Audience :: Developers",
|
|
21
|
+
"Programming Language :: Python :: 3",
|
|
22
|
+
"Programming Language :: Python :: 3.11",
|
|
23
|
+
]
|
|
24
|
+
|
|
25
|
+
[tool.poetry.dependencies]
|
|
26
|
+
# update the Python versions in .github/workflows/check.yml if you change this
|
|
27
|
+
python = ">= 3.11.0 < 4.0.0"
|
|
28
|
+
python-i18n = "^0.3.9"
|
|
29
|
+
|
|
30
|
+
[tool.poetry.group.dev.dependencies]
|
|
31
|
+
coverage = "^7.4.0"
|
|
32
|
+
mypy = "^1.10.1"
|
|
33
|
+
poethepoet = "^0.37.0"
|
|
34
|
+
poetry = "^1.8.3"
|
|
35
|
+
pytest = "^8.2.2"
|
|
36
|
+
flake8 = "^7.3.0"
|
|
37
|
+
pre-commit = "^4.5.1"
|
|
38
|
+
|
|
39
|
+
[tool.poe.tasks]
|
|
40
|
+
test = "python -m unittest discover -v -s tests -p '*.py'"
|
|
41
|
+
coverage = "coverage run -m unittest discover -v -s tests -p '*.py'"
|
|
42
|
+
coverage-report = "coverage report -m"
|
|
43
|
+
coverage-html = "coverage html"
|
|
44
|
+
mypy = "mypy OrecchietTetris tests"
|
|
45
|
+
flake8 = "flake8 OrecchietTetris tests"
|
|
46
|
+
compile = "python -m compileall OrecchietTetris tests"
|
|
47
|
+
commitlint = "npx commitlint --from=HEAD~1 --to=HEAD"
|
|
48
|
+
hooks = "pre-commit install --hook-type commit-msg"
|
|
49
|
+
|
|
50
|
+
[tool.poetry.scripts]
|
|
51
|
+
OrecchietTetris = "OrecchietTetris:main"
|
|
52
|
+
|
|
53
|
+
[build-system]
|
|
54
|
+
requires = ["poetry-core"]
|
|
55
|
+
build-backend = "poetry.core.masonry.api"
|
|
56
|
+
|
|
57
|
+
[[tool.poetry.source]]
|
|
58
|
+
name = "pypi-test"
|
|
59
|
+
url = "https://test.pypi.org/simple/"
|
|
60
|
+
priority = "supplemental"
|
|
61
|
+
|
|
62
|
+
[tool.mypy]
|
|
63
|
+
ignore_missing_imports = false
|
|
64
|
+
warn_return_any = true
|
|
65
|
+
warn_unused_configs = true
|
|
66
|
+
disallow_untyped_defs = true
|
|
67
|
+
disallow_incomplete_defs = true
|
|
68
|
+
check_untyped_defs = true
|
|
69
|
+
no_implicit_optional = true
|
|
70
|
+
warn_redundant_casts = true
|
|
71
|
+
warn_unused_ignores = true
|
|
72
|
+
warn_no_return = true
|
|
73
|
+
strict_equality = true
|
|
74
|
+
pretty = true
|
|
75
|
+
show_error_codes = true
|
|
76
|
+
|
|
77
|
+
[[tool.mypy.overrides]]
|
|
78
|
+
module = "tests.*"
|
|
79
|
+
disallow_untyped_defs = false
|
|
80
|
+
|
|
81
|
+
[tool.flake8]
|
|
82
|
+
max-line-length = 100
|
|
83
|
+
extend-ignore = ["E203", "W503"]
|
|
84
|
+
exclude = [
|
|
85
|
+
".git",
|
|
86
|
+
"__pycache__",
|
|
87
|
+
".venv",
|
|
88
|
+
"venv",
|
|
89
|
+
"dist",
|
|
90
|
+
"build",
|
|
91
|
+
]
|