mirror of
https://github.com/sourabhv/FlapPyBird.git
synced 2024-11-25 16:35:52 +08:00
33 lines
540 B
TOML
33 lines
540 B
TOML
|
[project]
|
||
|
name = "flappybird"
|
||
|
authors = [{name = "Sourabh Verma", email = "email@sourabh.dev"}]
|
||
|
version = "1.0.0"
|
||
|
description = "Flappy Bird in Pygame"
|
||
|
requires-python = ">=3.9,<4"
|
||
|
dependencies = [
|
||
|
"pygame == 2.4.0"
|
||
|
]
|
||
|
|
||
|
[project.optional-dependencies]
|
||
|
dev = [
|
||
|
"pygbag == 0.7.1",
|
||
|
"black >= 22.1.0",
|
||
|
"pre-commit >= 2.18.1",
|
||
|
"flake8 >= 4.0.1",
|
||
|
"isort >= 5.10.1"
|
||
|
]
|
||
|
|
||
|
[tool.black]
|
||
|
line-length = 80
|
||
|
exclude = '''
|
||
|
/(
|
||
|
| \.git
|
||
|
| build
|
||
|
)/
|
||
|
'''
|
||
|
|
||
|
[tool.isort]
|
||
|
profile = "black"
|
||
|
skip = []
|
||
|
skip_glob = []
|