-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
95 lines (87 loc) · 2.09 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
[tool.poetry]
name = "thegadget"
version = "0.9.2"
description = "A strategic simulation, written in Python."
authors = ["Michael John <[email protected]>"]
license = "MIT"
readme = "README.md"
include = [
"thegadget/locales/**/LC_MESSAGES/*.mo",
"thegadget/resources/database/*",
"thegadget/resources/images/*",
"thegadget/resources/images/events/*",
"thegadget/resources/maps/*",
"thegadget/resources/music/*",
"thegadget/resources/dlls/*",
]
exclude = [
"thegadget/resources/unused/*",
]
[tool.poetry.scripts]
thegadget = 'thegadget.__main__:main'
TheGadget = 'thegadget.__main__:main'
[tool.poetry.dependencies]
python = "^3.8"
# removed due to incompatibilities: pygame = "^2.4.0"
python-gettext = "^5.0"
pygame-ce = "^2.3.0"
pygame-gui = "^0.6.9"
cairosvg = "^2.7.0"
# removed due to incompatibilities: pygame-menu = "^4.4.3"
pygame-menu-ce = "^4.4.3"
# TODO: need these for windows:
# matplotlib
# basemap
# msvc-runtime
# removed due to incompatibilities
#pygame-animatedgif = "^0.1.0"
moviepy = "^1.0.3"
py-staticmaps = "^0.4.0"
pycairo = "^1.23.0"
pillow = "8.4.0"
geopandas = "^0.13.2"
# https://github.com/python-poetry/poetry/issues/7936#issuecomment-1556767769
urllib3 = "<=2.0"
[tool.poetry.dev-dependencies]
[tool.poetry.group.dev.dependencies]
beautifulsoup4 = "^4.12.2"
python-gettext = "^5.0"
pygame-ce = "^2.3.0"
pygame-gui = "^0.6.9"
osmnx = "^1.4.0"
nltk = "^3.8.1"
matplotlib = "^3.7.1"
basemap = "^1.3.7"
osmpythontools = "^0.3.5"
# https://github.com/python-poetry/poetry/issues/7936#issuecomment-1556767769
urllib3 = "<=2.0"
shapely = "^2.0.1"
geopandas = "^0.13.2"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.urls]
homepage = "https://github.com/amstelchen/TheGadget"
repository = "https://github.com/amstelchen/TheGadget"
documentation = "https://github.com/amstelchen/TheGadget"
[tool.ruff]
line-length = 120
ignore = [
"F401",
"F403",
"F405",
"F841",
"E501",
"E701",
"E702",
]
[tool.flake8]
ignore = [
"F401",
"F403",
"F405",
"F841",
"E501",
"E701",
"E702",
]