FlapPyBird/pyproject.toml

33 lines
540 B
TOML
Raw Permalink Normal View History

[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 = []