-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
76 lines (68 loc) · 1.48 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
[build-system]
requires = ["setuptools>=64.0", "setuptools-scm>=8"]
build-backend = "setuptools.build_meta"
[project]
name = "pyfoxhole"
dynamic = ["version"]
description = "A thin wrapper over the Foxhole World Conquest API"
authors = [
{ name = "gparent", email = "[email protected]" },
]
license = { text = "MIT" }
readme = "README.md"
classifiers = [
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Games/Entertainment",
]
requires-python = ">=3.9"
dependencies = [
"requests<3",
]
[project.optional-dependencies]
dev = [
"black>24,<25",
"build",
"setuptools-scm>=8",
"twine>=5,<6"
]
test = [
"pre-commit>=3,<4",
"pylint>=3,<4",
]
[project.urls]
"Bug Tracker" = "https://github.com/gparent/pyfoxhole/issues"
"Homepage" = "https://github.com/gparent/pyfoxhole"
[tool.black]
line-length = 80
target-version = ['py39', 'py310', 'py311', 'py312']
include = '\.pyi?$'
exclude = '''
/(
\.eggs
| \.git
| \.mypy_cache
| \.tox
| \venv
| build
| dist
)/
'''
[tool.isort]
line_length = 80
order_by_type = false
profile = "black"
skip_gitignore = true
[tool.pylint.main]
ignore = [".git"]
[tool.pylint."messages control"]
disable = [
"invalid-name",
"missing-class-docstring",
"missing-module-docstring",
"missing-function-docstring",
"too-few-public-methods",
]
[tool.setuptools_scm]
version_file = "src/pyfoxhole/_version.py"