-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
54 lines (46 loc) · 822 Bytes
/
pyproject.toml
File metadata and controls
54 lines (46 loc) · 822 Bytes
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "fxtumblr"
version = "0.1.0"
description = "Make Tumblr embeds on other websites way better. Like TwitFix/fxtwitter, but for Tumblr."
authors = [
{ name = "knuxify", email = "knuxify@gmail.com" },
]
license = "MIT"
readme = "README.md"
requires-python = ">=3.9"
dependencies = [
"quart",
"quart-cors",
"uvicorn",
"hypercorn",
"pytumblr",
"valkey",
"pyyaml",
"python-dateutil",
"emoji",
"markdownify",
"nh3",
"aiosqlite",
"psycopg[binary]",
]
[project.optional-dependencies]
lint = [
"flake8",
]
render-pyppeteer = [
"pyppeteer",
]
render-playwright = [
"playwright",
]
statstool = [
"matplotlib",
]
[tool.hatch]
skip-install = true
[tool.ruff.lint]
select = ["E4", "E7", "E9", "B", "F"]
ignore = ["E722"]