-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
53 lines (48 loc) · 1.19 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
[tool.poetry]
name = "Publ"
version = "0.7.36"
description = "A flexible web-based publishing framework"
authors = ["fluffy <[email protected]>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/PlaidWeb/Publ"
homepage = "https://publ.plaidweb.site/"
include = [
"bandcrash/__version__.py"
]
[tool.poetry.dependencies]
python = ">=3.9,<3.13"
authl = { version = "^0.7.0", optional = true }
misaka = "^2.1.1"
arrow = "^1.3.0"
atomicwrites = "^1.4.1"
awesome-slugify = "^1.6.5"
Flask = "^3.1.0"
Flask-Caching = "^2.3.0"
pony = "^0.7.19"
Pygments = "^2.19.1"
whoosh-reloaded = { version = "^2.7.4", optional = true }
watchdog = "*"
pillow = "^11.1.0"
requests = "^2.32.3"
[tool.poetry.extras]
auth = ["authl"]
search = ["whoosh-reloaded"]
[tool.poetry.group.dev.dependencies]
autopep8 = "^2.0.2"
coverage = "^7.2.5"
flake8 = "^6.0.0"
mypy = "^1.2.0"
pytest = "^7.3.1"
isort = "^5.12.0"
pytest-mock = "^3.10.0"
requests-mock = "^1.10.0"
types-python-dateutil = "^2.8.19.12"
types-requests = "^2.29.0.0"
types-python-slugify = "^8.0.0.2"
types-atomicwrites = "^1.4.5.1"
pylint = "^3.3.3"
hypercorn = "^0.17.3"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"