-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
38 lines (34 loc) · 1.01 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
[tool.poetry]
name = "trim-template"
version = "0.1.3"
description = "A templating engine inspired by Ruby's Slim template engine"
authors = ["David Kelly"]
license = "MIT License"
readme = "README.md"
repository = "https://github.com/opensourceme/trim-template"
keywords = ["template", "trim", "engine", "html"]
[project]
name = "trim-template"
version = "0.1.0"
description = "A templating engine inspired by Ruby's Slim template engine"
authors = [
{name = "David Kelly", email = "[email protected]"}
]
readme = "README.md"
requires-python = ">=3.12"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
[tool.poetry.dependencies]
python = "^3.12"
pytest = "^8.0.2"
bs4 = "^0.0.2"
ruff = "^0.2.2"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[project.urls]
Homepage = "https://github.com/opensourceame/trim-template"
Issues = "https://github.com/opensourceame/trim-template/issues"