-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
28 lines (27 loc) · 857 Bytes
/
Copy pathpyproject.toml
File metadata and controls
28 lines (27 loc) · 857 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
[project]
name = "asteroids"
version = "0.1.0"
description = "A minimalist Asteroids arcade clone written in Python with pygame."
readme = "README.md"
requires-python = ">=3.13"
license = "MIT"
license-files = ["LICENSE"]
authors = [
{ name = "Serhii Shramko", email = "shramko.dev@gmail.com" },
]
keywords = ["pygame", "game", "asteroids", "arcade"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: End Users/Desktop",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.13",
"Topic :: Games/Entertainment :: Arcade",
]
dependencies = [
"pygame==2.6.1",
]
[project.urls]
Homepage = "https://github.com/Shramkoweb/asteroids"
Repository = "https://github.com/Shramkoweb/asteroids"
Issues = "https://github.com/Shramkoweb/asteroids/issues"