-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
40 lines (35 loc) · 977 Bytes
/
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
[tool.poetry]
name = "libretro-finder"
version = "0.3.1"
description = "Simple tool that finds and prepares your BIOS files for usage with Libretro (or its RetroArch frontend)."
authors = ["Jasper Siebring <[email protected]>"]
license = "GNU General Public License v3.0"
homepage = "https://github.com/jaspersiebring/libretro_finder"
readme = "README.md"
packages = [
{include = "libretro_finder"},
{include = "config"},
]
[tool.poetry.scripts]
libretro_finder = "libretro_finder.main:main"
[tool.poetry.dependencies]
python = ">=3.9,<3.13"
gooey = "^1.0.8.1"
pandas = "^2.1.4"
tqdm = "^4.66.1"
vdf = "^3.4"
wxpython = "^4.2.1"
[tool.poetry.group.dev.dependencies]
pytest = "^7.4.3"
mypy = "^1.7.1"
ruff = "^0.1.8"
pytest-mock = "^3.12.0"
pytest-cov = "^4.1.0"
pyinstaller = "^6.3.0"
pandas-stubs = "^2.1.4.231218"
types-tqdm = "^4.66.0.5"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.ruff.lint]
ignore = ["F811"]