-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (29 loc) · 877 Bytes
/
pyproject.toml
File metadata and controls
35 lines (29 loc) · 877 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
29
30
31
32
33
34
35
[tool.poetry]
name = "run-away"
version = "0.6.0"
description = "A side-scrolling platformer RPG game inspired by 2D indie hits like Celeste, Hollow Knight, and Towerfall."
authors = ["lukadd16 <lukadd@icloud.com>", "RaddedMC <mycooljames@hotmail.com>", "SharafSyed <sharaf.syed04@gmail.com>", "KelseyKloosterman <kkloost2@uwo.ca>"]
license = "MIT"
readme = "README.md"
[tool.poetry.dependencies]
python = ">=3.9,<3.12"
pytmx = "^3.31"
pygame = "2.2.0"
[tool.poetry.group.dev.dependencies]
black = "^23.0"
ruff = "0.0.255"
pre-commit = "^3.2.2"
pyinstaller = "^5.10.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
game = "run_away.main:main"
[tool.ruff]
line-length = 88
select = ["ALL"]
ignore = ["D", "T20", "ANN101", "ANN102"]
target-version = "py39"
[tool.black]
line-length = 88
target-version = ["py39"]