-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
39 lines (35 loc) · 1.09 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "yamja"
version = "0.1.0"
description = "Opinionated library for handling yaml configuration files and jinja2 templates"
readme = "README.md"
requires-python = ">=3.12"
license = "MIT"
authors = [
{ name = "mobarski", email = "[email protected]" }
]
keywords = ["yaml", "jinja2", "configuration", "templates"]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = [
"jinja2>=3.1.4",
"pyyaml>=6.0.2",
]
[project.optional-dependencies]
test = ["pytest>=8.0.0"]
[project.urls]
Homepage = "https://github.com/mobarski/yamja"
Repository = "https://github.com/mobarski/yamja.git"
Documentation = "https://github.com/mobarski/yamja#readme"
"Bug Tracker" = "https://github.com/mobarski/yamja/issues"
[tool.hatch.build.targets.wheel]
packages = ["yamja"]