-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
63 lines (52 loc) · 1.35 KB
/
Copy pathpyproject.toml
File metadata and controls
63 lines (52 loc) · 1.35 KB
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
[project]
name = "farmmod"
version = "0.1.0"
description = "FarmMod - gerenciador de mods para Farming Simulator no Linux"
requires-python = ">=3.10"
license = "AGPL-3.0-or-later"
authors = [
{name = "Henrique", email = "henriquejsza@gmail.com"},
]
maintainers = [
{name = "Henrique", email = "henriquejsza@gmail.com"},
]
[project.urls]
Homepage = "https://github.com/henriquejsza/FarmMod"
Repository = "https://github.com/henriquejsza/FarmMod"
Issues = "https://github.com/henriquejsza/FarmMod/issues"
[project.scripts]
farmmod = "farmmod_hub.presentation.gtk.app:main"
farmmod-hub = "farmmod_hub.presentation.gtk.app:main"
mod-fs19 = "farmmod_hub.presentation.gtk.app:main"
[project.optional-dependencies]
dev = [
"black>=24.0.0",
"mypy>=1.10.0",
"pytest>=8.0.0",
"ruff>=0.5.0",
]
[build-system]
requires = ["setuptools>=68"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
package-dir = {"" = "src"}
[tool.setuptools.packages.find]
where = ["src"]
include = ["farmmod_hub*"]
[tool.pytest.ini_options]
pythonpath = ["src"]
testpaths = ["tests"]
[tool.black]
line-length = 88
target-version = ["py310"]
[tool.ruff]
line-length = 88
target-version = "py310"
src = ["src", "tests"]
[tool.ruff.lint]
select = ["B", "E", "F", "I", "UP"]
[tool.mypy]
python_version = "3.10"
files = ["src", "tests"]
ignore_missing_imports = true
warn_unused_ignores = true