-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
80 lines (73 loc) · 1.97 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
[build-system]
build-backend = "hatchling.build"
requires = [
"hatchling>=1.13",
"hatch-vcs>=0.3",
]
[project]
name = "toolforge"
description = "Small library for common tasks on Wikimedia Toolforge"
readme = "README.rst"
keywords = [
"wikimedia",
"toolforge",
]
license = "GPL-3.0+"
maintainers = [
{ name = "Bryan Davis", email = "[email protected]" },
{ name = "Lucas Werkmeister", email = "[email protected]" },
]
authors = [
{ name = "Kunal Mehta", email = "[email protected]" },
]
requires-python = ">=3.7"
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Software Development :: Libraries",
]
dynamic = [
"version",
]
dependencies = [
"requests>=2.28.2",
"pymysql>=1.0.3",
"decorator>=5.1.1",
]
[project.urls]
Documentation = "https://python-toolforge.readthedocs.io/"
Changelog = "https://gitlab.wikimedia.org/toolforge-repos/python-toolforge/-/blob/main/HISTORY.rst"
"Bug Tracker" = "https://phabricator.wikimedia.org/tag/tool-python-toolforge/"
Source = "https://gitlab.wikimedia.org/toolforge-repos/python-toolforge"
[tool.hatch]
build.dev-mode-dirs = ["src"]
build.targets.sdist.include = [
"/COPYING",
"/src",
"/tests",
"/tox.ini",
]
[tool.hatch.version]
source = "vcs"
[tool.mypy]
python_version = "3.11"
strict = true
show_error_codes = true
[tool.black]
line_length = 88
target_version = ["py37"]
[tool.isort]
src_paths = ["src", "tests"]
line_length = 88
profile = "black"
force_single_line = true
force_sort_within_sections = true
case_sensitive = false