Name | pong-arcade JSON |
Version |
2.5.1
JSON |
| download |
home_page | None |
Summary | Pong written using pygame |
upload_time | 2024-12-12 05:08:07 |
maintainer | None |
docs_url | None |
author | None |
requires_python | >=3.7 |
license | MIT License Copyright (c) 2024 Jacob Alexander Thompson Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. |
keywords |
application
arcade
executable
game
pong
|
VCS |
|
bugtrack_url |
|
requirements |
No requirements were recorded.
|
Travis-CI |
No Travis.
|
coveralls test coverage |
No coveralls.
|
[![Contributors][contributors-shield]][contributors-url]
[![Forks][forks-shield]][forks-url]
[![Stargazers][stars-shield]][stars-url]
[![Issues][issues-shield]][issues-url]
[![MIT License][license-shield]][license-url]
<br />
<div align="center">
<a href="https://github.com/jacob-thompson/pong-arcade">
<img src="https://raw.githubusercontent.com/jacob-thompson/pong-arcade/main/src/pong_arcade/data/gfx/logo.png" alt="Logo" width="80" height="80">
</a>
<h3 align="center">pong-arcade</h3>
<p align="center">
Pong written using pygame
<br />
</p>
</div>
## About The Project
![Screenshot](https://raw.githubusercontent.com/jacob-thompson/pong-arcade/main/src/pong_arcade/data/gfx/screenshot.png)
This application is an implementation of [Pong](https://en.wikipedia.org/wiki/Pong), originally developed and released by [Atari](https://en.wikipedia.org/wiki/Atari,_Inc._(1972%E2%80%931992)) in 1972. `pong-arcade` was created using [pygame](https://www.pygame.org/wiki/about) and [various resources](https://github.com/jacob-thompson/pong-arcade/tree/main/src/pong_arcade/data).
## Play
#### Install
As per [PEP 668](https://peps.python.org/pep-0668/), it is recommended to use `pipx` to install this application:
```bash
pipx install pong-arcade
```
Otherwise:
```bash
pip install pong-arcade
```
###### From Source
This application may also be built and installed from source. Requires the pip package `build`:
```bash
python3 -m build
pipx install dist/*.tar.gz
```
```bash
python3 -m build
pip install dist/*.tar.gz
```
#### Run
```bash
pong
```
## Controls
The controls may be examined in-game from the menu.
#### Menu
* `Esc` Quit
* `C` Controls
* `1` Select first menu option
* `2` Select second menu option
* `3` Toggle third menu option
#### In-Game
![Controls Screenshot](https://raw.githubusercontent.com/jacob-thompson/pong-arcade/main/src/pong_arcade/data/gfx/controls.png)
###### Movement
* `W` / `I` Move up
* `S` / `K` Move down
Player1 may use either control scheme in single-player games.
###### Pause/Quit
* `P` / `Q` Pause the game
* `M` / `Z` Exit to menu
## License
Distributed under the MIT License. See [LICENSE](https://github.com/jacob-thompson/pong-arcade/blob/main/LICENSE) for more information.
## Project Links
Github - [jacob-thompson/pong-arcade](https://github.com/jacob-thompson/pong-arcade)
PyPI - [pong-arcade](https://pypi.org/project/pong-arcade/)
## Contact
Jacob Alexander Thompson - jacobalthompson@gmail.com
[contributors-shield]: https://img.shields.io/github/contributors/jacob-thompson/pong-arcade.svg?style=flat
[contributors-url]: https://github.com/jacob-thompson/pong-arcade/graphs/contributors
[forks-shield]: https://img.shields.io/github/forks/jacob-thompson/pong-arcade.svg?style=flat
[forks-url]: https://github.com/jacob-thompson/pong-arcade/network/members
[stars-shield]: https://img.shields.io/github/stars/jacob-thompson/pong-arcade.svg?style=flat
[stars-url]: https://github.com/jacob-thompson/pong-arcade/stargazers
[issues-shield]: https://img.shields.io/github/issues/jacob-thompson/Pong.svg?style=flat
[issues-url]: https://github.com/jacob-thompson/pong-arcade/issues
[license-shield]: https://img.shields.io/github/license/jacob-thompson/Pong.svg?style=flat
[license-url]: https://github.com/jacob-thompson/pong-arcade/blob/main/LICENSE
Raw data
{
"_id": null,
"home_page": null,
"name": "pong-arcade",
"maintainer": null,
"docs_url": null,
"requires_python": ">=3.7",
"maintainer_email": "\"Jacob A. Thompson\" <jacobalthompson@gmail.com>",
"keywords": "application, arcade, executable, game, pong",
"author": null,
"author_email": "\"Jacob A. Thompson\" <jacobalthompson@gmail.com>",
"download_url": "https://files.pythonhosted.org/packages/cf/7d/6678c417345fa757c052aec7e6c71cbe64273fb2dfd648dfccedb06e3594/pong_arcade-2.5.1.tar.gz",
"platform": null,
"description": "[![Contributors][contributors-shield]][contributors-url]\n[![Forks][forks-shield]][forks-url]\n[![Stargazers][stars-shield]][stars-url]\n[![Issues][issues-shield]][issues-url]\n[![MIT License][license-shield]][license-url]\n\n\n<br />\n<div align=\"center\">\n <a href=\"https://github.com/jacob-thompson/pong-arcade\">\n <img src=\"https://raw.githubusercontent.com/jacob-thompson/pong-arcade/main/src/pong_arcade/data/gfx/logo.png\" alt=\"Logo\" width=\"80\" height=\"80\">\n </a>\n\n <h3 align=\"center\">pong-arcade</h3>\n\n <p align=\"center\">\n Pong written using pygame\n <br />\n </p>\n</div>\n\n\n## About The Project\n\n![Screenshot](https://raw.githubusercontent.com/jacob-thompson/pong-arcade/main/src/pong_arcade/data/gfx/screenshot.png)\n\nThis application is an implementation of [Pong](https://en.wikipedia.org/wiki/Pong), originally developed and released by [Atari](https://en.wikipedia.org/wiki/Atari,_Inc._(1972%E2%80%931992)) in 1972. `pong-arcade` was created using [pygame](https://www.pygame.org/wiki/about) and [various resources](https://github.com/jacob-thompson/pong-arcade/tree/main/src/pong_arcade/data).\n\n\n## Play\n\n#### Install\n\nAs per [PEP 668](https://peps.python.org/pep-0668/), it is recommended to use `pipx` to install this application:\n\n```bash\npipx install pong-arcade\n```\n\nOtherwise:\n\n```bash\npip install pong-arcade\n```\n\n###### From Source\n\nThis application may also be built and installed from source. Requires the pip package `build`:\n\n```bash\npython3 -m build\npipx install dist/*.tar.gz\n```\n\n```bash\npython3 -m build\npip install dist/*.tar.gz\n```\n\n#### Run\n\n```bash\npong\n```\n\n## Controls\n\nThe controls may be examined in-game from the menu.\n\n#### Menu\n\n* `Esc` Quit\n* `C` Controls\n* `1` Select first menu option\n* `2` Select second menu option\n* `3` Toggle third menu option\n\n#### In-Game\n\n![Controls Screenshot](https://raw.githubusercontent.com/jacob-thompson/pong-arcade/main/src/pong_arcade/data/gfx/controls.png)\n\n###### Movement\n\n* `W` / `I` Move up\n* `S` / `K` Move down\n\nPlayer1 may use either control scheme in single-player games.\n\n###### Pause/Quit\n\n* `P` / `Q` Pause the game\n* `M` / `Z` Exit to menu\n\n\n## License\n\nDistributed under the MIT License. See [LICENSE](https://github.com/jacob-thompson/pong-arcade/blob/main/LICENSE) for more information.\n\n\n## Project Links\n\nGithub - [jacob-thompson/pong-arcade](https://github.com/jacob-thompson/pong-arcade)\n\nPyPI - [pong-arcade](https://pypi.org/project/pong-arcade/)\n\n\n## Contact\n\nJacob Alexander Thompson - jacobalthompson@gmail.com\n\n\n[contributors-shield]: https://img.shields.io/github/contributors/jacob-thompson/pong-arcade.svg?style=flat\n[contributors-url]: https://github.com/jacob-thompson/pong-arcade/graphs/contributors\n[forks-shield]: https://img.shields.io/github/forks/jacob-thompson/pong-arcade.svg?style=flat\n[forks-url]: https://github.com/jacob-thompson/pong-arcade/network/members\n[stars-shield]: https://img.shields.io/github/stars/jacob-thompson/pong-arcade.svg?style=flat\n[stars-url]: https://github.com/jacob-thompson/pong-arcade/stargazers\n[issues-shield]: https://img.shields.io/github/issues/jacob-thompson/Pong.svg?style=flat\n[issues-url]: https://github.com/jacob-thompson/pong-arcade/issues\n[license-shield]: https://img.shields.io/github/license/jacob-thompson/Pong.svg?style=flat\n[license-url]: https://github.com/jacob-thompson/pong-arcade/blob/main/LICENSE\n",
"bugtrack_url": null,
"license": "MIT License Copyright (c) 2024 Jacob Alexander Thompson Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.",
"summary": "Pong written using pygame",
"version": "2.5.1",
"project_urls": {
"Bug Reports": "https://github.com/jacob-thompson/pong-arcade/issues",
"Homepage": "https://github.com/jacob-thompson/pong-arcade"
},
"split_keywords": [
"application",
" arcade",
" executable",
" game",
" pong"
],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "5355991fff78906987ef672cea906043841cd8a8a67a22ce833bb5a44bb40015",
"md5": "4bff6093a8b346ef9aa6a56ab6ca9156",
"sha256": "a1008ae134519d37fb8121b6cf29f2455bf62a3e7aa51632e075eca9120b29df"
},
"downloads": -1,
"filename": "pong_arcade-2.5.1-py3-none-any.whl",
"has_sig": false,
"md5_digest": "4bff6093a8b346ef9aa6a56ab6ca9156",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.7",
"size": 100597,
"upload_time": "2024-12-12T05:08:04",
"upload_time_iso_8601": "2024-12-12T05:08:04.265859Z",
"url": "https://files.pythonhosted.org/packages/53/55/991fff78906987ef672cea906043841cd8a8a67a22ce833bb5a44bb40015/pong_arcade-2.5.1-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "cf7d6678c417345fa757c052aec7e6c71cbe64273fb2dfd648dfccedb06e3594",
"md5": "68c99242fd53a97f99143c3782086903",
"sha256": "6d45525079117ad034b96f8968206919015f3d3baf8ec6ed6bb4627f1e58c491"
},
"downloads": -1,
"filename": "pong_arcade-2.5.1.tar.gz",
"has_sig": false,
"md5_digest": "68c99242fd53a97f99143c3782086903",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.7",
"size": 99259,
"upload_time": "2024-12-12T05:08:07",
"upload_time_iso_8601": "2024-12-12T05:08:07.132113Z",
"url": "https://files.pythonhosted.org/packages/cf/7d/6678c417345fa757c052aec7e6c71cbe64273fb2dfd648dfccedb06e3594/pong_arcade-2.5.1.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-12-12 05:08:07",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "jacob-thompson",
"github_project": "pong-arcade",
"travis_ci": false,
"coveralls": false,
"github_actions": true,
"tox": true,
"lcname": "pong-arcade"
}