-
Notifications
You must be signed in to change notification settings - Fork 6
/
pyproject.toml
62 lines (55 loc) · 1.13 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
[project]
name = "poyonga"
description = "Python Groonga Client"
license = {file = "LICENSE"}
authors = [
{name = "Hideo Hattori", email = "[email protected]"},
]
readme = "README.rst"
keywords = [
"groonga",
"http",
"gqtp",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Operating System :: Unix",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS :: MacOS X",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
]
requires-python = ">=3.8"
dependencies = []
dynamic = ["version"]
[project.urls]
Repository = "https://github.com/hhatto/poyonga"
[project.optional-dependencies]
dev = [
"ruff",
"pytest",
"black",
]
[tool.setuptools]
packages = ["poyonga"]
[tool.setuptools.dynamic]
version = {attr = "poyonga.__version__"}
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[tool.ruff]
select = [
"E", "W", "F", "I", "C", "B",
]
ignore = [
"E501",
"B008",
"C901",
]
extend-exclude = [
"examples",
]
line-length = 120
[tool.black]
line-length = 120