-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
31 lines (27 loc) · 752 Bytes
/
pyproject.toml
File metadata and controls
31 lines (27 loc) · 752 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
[tool.poetry]
name = "hyccup"
version = "3.2.0"
description = "A port of Clojure Hiccup for Hy"
authors = ["Guillaume Fayard <guillaume.fayard@pycolore.fr>"]
license = "MIT"
keywords = ["template", "html", "hiccup", "hy"]
include = ["hyccup/*.hy", "hyccup/__pycache__/*.pyc"]
repository = "https://github.com/Arkelis/hyccup"
documentation = "https://hyccup.pycolore.fr"
readme = "README.md"
[tool.poetry.dependencies]
python = ">=3.10,<3.12"
hy = "0.26.0"
hyrule = "*"
astor = "^0"
[tool.poetry.dev-dependencies]
pytest = "^6.2.4"
Sphinx = "^4.1.2"
furo = "*"
sphinx-inline-tabs = "*"
[tool.poetry.group.dev.dependencies]
toml = "^0.10.2"
black = "^23.3.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"