-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
52 lines (46 loc) · 1.17 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
[build-system]
requires = ["setuptools", "build"]
build-backend = "setuptools.build_meta"
[project]
name = "zinerator"
version = "0.0.1"
authors = [{ name = "Isaac Halvorson", email = "hello@hisaac.net" }]
license = { text = "MIT" }
description = "A tool for generating a printable PDF zine from the articles in a batch of URLs."
requires-python = ">=3.11"
dependencies = [
"beautifulsoup4>=4.12.2",
# "trafilatura>=1.6.3",
# "weasyprint>=60.1",
# "pdfbook>=0.1.0",
# "newspaper4k@git+https://github.com/AndyTheFactory/newspaper4k#egg=work-0.9.2",
"python-slugify>=8.0.1",
# "readability-lxml>=0.8.1",
# "nh3>=0.2.15",
# "pyemoji>=1.0.4",
]
[project.urls]
homepage = "https://github.com/hisaac/zinerator"
repository = "https://github.com/hisaac/zinerator"
[project.readme]
file = "README.md"
content-type = "text/markdown"
[project.optional-dependencies]
lint = [
"pylance",
"ruff",
]
dev = [
"zinerator[lint]"
]
[tool.ruff]
select = [
"E", # pycodestyle
"W", # pycodestyle
"F", # pyflakes
"I", # isort
"C4", # flake8-comprehensions
"TID", # flake8-tidy-imports
]
[tool.ruff.format]
indent-style = "tab"