generated from python-discord/code-jam-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
48 lines (40 loc) · 1 KB
/
pyproject.toml
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
36
37
38
39
40
41
42
43
44
45
46
47
48
[tool.poetry]
name = "code-jam-2023"
version = "0.1.0"
description = "project made for python discord code jam 10"
authors = [
"p0lygun <[email protected]>",
"Hamza-Farrukh <[email protected]>",
"Anas-bot <[email protected]>",
"rudravashishtha <[email protected]>",
"Kaezrr"
]
license = "MIT"
readme = "README.md"
packages = [{include = "game"}]
[tool.poetry.dependencies]
python = "^3.11"
numpy = "^1.25.2"
python-dotenv = "^1.0.0"
pygame-ce = "^2.3.1"
pygame-gui = "^0.6.9"
[tool.poetry.group.dev.dependencies]
pre-commit = "^3.3.3"
flake8 = "^6.1.0"
isort = "^5.12.0"
flake8-docstrings = "^1.7.0"
[tool.poetry.group.extras]
optional = true
[tool.poetry.group.extras.dependencies]
requests = "^2.31.0"
beautifulsoup4 = "^4.12.2"
svg-path = "^6.3"
svgpathtools = "^1.6.1"
lxml = "^4.9.3"
pycountry = "^22.3.5"
pyopengl = "^3.1.7"
[tool.poetry.scripts]
game = "game.__main__:run_game"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"