-
Notifications
You must be signed in to change notification settings - Fork 7
/
pyproject.toml
78 lines (67 loc) · 1.52 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
[project]
dynamic = ["version", "dependencies"]
name = "kinto-attachment"
description = "Attach files to Kinto records"
readme = "README.rst"
license = {file = "LICENSE"}
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Internet :: WWW/HTTP :: WSGI :: Application",
"License :: OSI Approved :: Apache Software License"
]
keywords = ["web services"]
authors = [
{name = "Mozilla Services", email = "[email protected]"},
]
[project.urls]
Repository = "https://github.com/Kinto/kinto-attachment"
[project.scripts]
kinto-send-email = "kinto_emailer.command_send:main"
[tool.setuptools_scm]
# can be empty if no extra settings are needed, presence enables setuptools_scm
[tool.setuptools.dynamic]
dependencies = { file = ["requirements.in"] }
[build-system]
requires = ["setuptools>=64", "setuptools_scm>=8"]
build-backend = "setuptools.build_meta"
[project.optional-dependencies]
dev = [
"ruff",
"moto[server,s3]<6",
"kinto_http",
"pytest",
"pytest-cache",
"pytest-cov",
"webtest",
"kinto[postgresql]",
]
[tool.pip-tools]
generate-hashes = true
[tool.coverage.run]
omit = [
"tests/*",
]
relative_files = true
[tool.ruff]
line-length = 99
extend-exclude = [
"__pycache__",
".venv/",
]
[tool.ruff.lint]
select = [
# pycodestyle
"E", "W",
# flake8
"F",
# isort
"I",
]
ignore = [
# `format` will wrap lines.
"E501",
]
[tool.ruff.lint.isort]
lines-after-imports = 2