-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
75 lines (67 loc) · 1.57 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
[build-system]
requires = [
"setuptools>=61.2",
"cython>=0.29",
]
build-backend = "setuptools.build_meta"
[project]
name = "fastbencode"
description = "Implementation of bencode with optional fast C extensions"
maintainers = [{name = "Breezy Developers", email = "[email protected]"}]
readme = "README.md"
license = {text = "GPLv2 or later"}
classifiers = [
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Operating System :: POSIX",
"Operating System :: Microsoft :: Windows",
]
requires-python = ">=3.9"
dynamic = ["version"]
dependencies = []
[project.urls]
Homepage = "https://github.com/breezy-team/fastbencode"
GitHub = "https://github.com/breezy-team/fastbencode"
[project.optional-dependencies]
cext = ["cython>=0.29"]
dev = [
"ruff==0.9.4"
]
[tool.setuptools]
packages = ["fastbencode"]
include-package-data = false
[tool.setuptools.dynamic]
version = {attr = "fastbencode.__version__"}
[tool.ruff]
target-version = "py37"
line-length = 79
[tool.ruff.lint]
select = [
"ANN",
"D",
"E",
"F",
"I",
"UP",
]
ignore = [
"ANN001",
"ANN002",
"ANN101",
"ANN201",
"ANN202",
"ANN204",
"D100",
"D101",
"D102",
"D103",
"D105",
"D107",
]
[tool.ruff.lint.pydocstyle]
convention = "google"