-
Notifications
You must be signed in to change notification settings - Fork 39
Expand file tree
/
Copy pathpyproject.toml
More file actions
106 lines (98 loc) · 1.93 KB
/
pyproject.toml
File metadata and controls
106 lines (98 loc) · 1.93 KB
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
[project]
name = "pyFF"
version = "2.1.6.dev0"
readme = "README.rst"
description = "Federation Feeder"
requires-python = ">=3.9"
license = {file = "LICENSE"}
authors = [
{name = "Leif Johansson", email = "leifj@sunet.se"},
{name = "Fredrik Thulin", email = "redrik@thulin.net"},
{name = "Enrique Pérez Arnaud"},
{name = "Mikael Frykholm", email = "mifr@sunet.se"},
]
maintainers = [
{name = "Mikael Frykholm", email = "mifr@sunet.se"}
]
dependencies = [
"accept-types>=0.4.1",
"apscheduler==3.6.3",
"cachetools>=5.5.2",
"eval-type-backport>=0.2.2 ; python_full_version == '3.9.*'",
"gunicorn>=23.0.0",
"lxml>=4.1.1",
"mako>=1.3.10",
"pyconfig>=3.2.3,<3.3.0",
"pydantic>=2.8",
"pyramid>=2.0.2",
"pytz>=2025.2",
"pyxmlsecurity>=1.0.0",
"pyyaml>=3.10",
"redis>=5.3.0",
"redis-collections>=0.13.0",
"requests>=2.32.3",
"requests-cache==1.2.1",
"requests-file==2.1.0",
"setuptools>=78.1.1,<81",
"str2bool>=1.1",
"whoosh>=2.7.4",
"wsgi-intercept>=1.13.1",
"xmldiff>=2.7.0",
]
[dependency-groups]
docs = ["sphinx",
"sphinx-rtd-theme"
]
dev = [
"coverage",
"fakeredis>=1.0.5",
"funcsigs",
"isort",
"mako",
"mock",
"pbr",
"pytest>=6.0.0",
"pytest-cov",
"wsgi_intercept",
]
[project.scripts]
pyff = "pyff.md:main"
pyffd = "pyff.mdq:main"
samldiff = "pyff.tools:difftool"
[tool.ruff]
# Allow lines to be as long as 120.
line-length = 120
target-version = "py39"
[tool.ruff.lint]
#select = [
## "ANN",
# "ASYNC",
# "E",
# "ERA",
# "F",
# "FAST",
# "FLY",
# "FURB",
# "I",
# "PERF",
# "PGH",
# "PIE",
# "PL",
# "UP",
# "W",
#]
ignore = [
"PLR0915",
"PLR0912",
]
[tool.ruff.format]
quote-style = "preserve"
[tool.build_sphinx]
source-dir = "docs/"
build-dir = "docs/build"
all_files = "1"
[tool.upload_sphinx]
upload-dir = "docs/build/html"
[build-system]
requires = ["uv_build>=0.10.4,<0.11.0"]
build-backend = "uv_build"