-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
45 lines (40 loc) · 1.05 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
[tool.poetry]
name = "purepress"
version = "0.9.2"
description = "A simple static blog generator."
license = "MIT"
authors = ["Richard Chien <richardchienthebest@gmail.com>"]
readme = "README.md"
repository = "https://github.com/verilab/purepress"
keywords = ["Static Blog Generator", "Static Blog", "Blog", "Blog Engine"]
classifiers = [
"Development Status :: 4 - Beta",
"Framework :: Flask",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
]
[tool.poetry.scripts]
purepress = "purepress.__main__:cli.main"
[tool.poetry.dependencies]
python = ">=3.6,<3.11"
importlib-metadata = "<5.0"
Werkzeug = "~1.0.1"
Flask = "~1.1.2"
PyYAML = "~5.4.1"
click = "~7.1.2"
colorama = "~0.4.3"
feedgen = "~0.9.0"
pytz = "~2020.1"
Markdown = "~3.2.2"
py-gfm = "~1.0.0"
toml = "~0.10.2"
html-toc = "~0.1.1"
MarkupSafe = "~2.0.1"
[tool.poetry.dev-dependencies]
black = "~20.8b1"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"
[tool.black]
line-length = 120