-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
44 lines (40 loc) · 1015 Bytes
/
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
[tool.poetry]
name = "combine"
version = "2.17.0"
description = "A straightforward static site builder."
authors = ["Dropseed <[email protected]>"]
license = "MIT"
readme = "README.md"
homepage = "https://combine.dropseed.dev"
documentation = "https://combine.dropseed.dev"
repository = "https://github.com/dropseed/combine"
keywords = ["static", "site", "generator", "jinja"]
[tool.poetry.scripts]
combine = "combine.cli:cli"
[tool.poetry.dependencies]
python = "^3.8.0"
Jinja2 = "^3.1.2"
click = ">7.1.2"
beautifulsoup4 = "^4.9.1"
Pygments = "^2.6.1"
markdown = "^3.2.2"
python-frontmatter = "^1.0.0"
typing-extensions = "^4.3.0"
PyYAML = "^6.0"
barrel = "^0.3.0"
honcho = "^1.1.0"
repaint = "^0.1.0"
watchfiles = "^0.19.0"
[tool.poetry.dev-dependencies]
ipdb = "^0.13.3"
black = "^22.1.0"
snapshottest = "^0.6.0"
pytest = "^7.0.1"
mypy = "^0.971"
lxml = "^4.9.1"
types-Markdown = "*"
types-PyYAML = "*"
types-setuptools = "*"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"