-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
68 lines (59 loc) · 1.48 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
dynamic = ["version"]
name = "yarrharr"
license = {text = "GPLv3+"}
readme = "README.md"
dependencies = [
"attrs >= 21.3.0",
"Django >=4.2.1,<4.3",
"Twisted[tls] >= 22.10.0",
"treq >= 22.2.0",
"feedparser >= 6.0.8",
"html5lib == 1.1",
]
requires-python = ">=3.9"
authors = [
{name = "Tom Most", email = "[email protected]"}
]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Web Environment",
"Intended Audience :: End Users/Desktop",
"Framework :: Django",
"Framework :: Twisted",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Topic :: Internet :: WWW/HTTP",
]
[project.urls]
homepage = "https://github.com/twm/yarrharr"
[project.scripts]
yarrharr = "yarrharr.scripts.yarrharr:main"
yarrharr-fetch = "yarrharr.scripts.fetch:main"
[tool.hatch.build.targets.sdist]
packages = ["yarrharr"]
artifacts = ["/yarrharr/static"]
[tool.hatch.build.targets.wheel]
packages = ["yarrharr"]
artifacts = ["/yarrharr/static"]
[tool.hatch.version]
path = "yarrharr/__init__.py"
[tool.ruff]
line-length = 150
target-version = "py39"
[tool.ruff.lint]
select = [
"E",
"F",
"I",
]
ignore = [
]
[tool.ruff.lint.per-file-ignores]
"yarrharr/wsgi.py" = ["E402"]
"yarrharr/migrations/*.py" = ["I", "F401"]