-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
77 lines (64 loc) · 1.88 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
[tool.poetry]
name = "factorio-mod-downloader"
version = "0.2.1"
description = "One Downloader for all your factorio mods."
authors = ["Vaibhav Vikas <[email protected]>"]
license = "MIT"
readme = "README.md"
classifiers = [
"Development Status :: 4 - Beta",
]
packages = [
{ include = "factorio_mod_downloader", from="src" },
]
[tool.poetry.urls]
Changelog = "https://github.com/vaibhav_vikas/factorio-mod-downloader/releases"
[tool.poetry.dependencies]
python = ">=3.12,<3.13"
requests = "^2.32.3"
pillow = "^11.0.0"
customtkinter = "^5.2.2"
ctkmessagebox = "^2.7"
chromedriver-autoinstaller = "^0.6.4"
selenium = "^4.25.0"
poetry-pyinstaller-plugin = "^1.2.0"
beautifulsoup4 = "^4.12.3"
pylint = "^3.3.1"
[tool.poetry.dev-dependencies]
isort = ">=5.10.1"
[tool.poetry.scripts]
factorio-mod-downloader = "factorio_mod_downloader.__main__:main"
[tool.poetry.group.dev.dependencies]
black = "^24.10.0"
[tool.isort]
profile = "black"
force_single_line = true
lines_after_imports = 2
[tool.black]
line-length = 100
skip-string-normalization = false
[tool.pylint]
disable = [
"missing-docstring",
# Optional: More specific docstring warnings
# "missing-class-docstring",
# "missing-function-docstring",
# "missing-module-docstring"
]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry-pyinstaller-plugin]
disable-upx = true
recursive-copy-metadata = [
"requests",
"chromedriver_autoinstaller",
"selenium",
"customtkinter"
]
[tool.poetry-pyinstaller-plugin.scripts]
factorio_mod_downloader = { source = "src/factorio_mod_downloader/__main__.py", type = "onefile", bundle = true, add_version = true, icon = "factorio_downloader.ico", windowed = true }
[tool.poetry-pyinstaller-plugin.collect]
all = ['factorio_mod_downloader', 'mod_downloader']
[tool.poetry-pyinstaller-plugin.include]
"factorio_downloader.ico" = "."