-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (33 loc) · 1.1 KB
/
Copy pathpyproject.toml
File metadata and controls
38 lines (33 loc) · 1.1 KB
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
[build-system]
requires = ["setuptools>=77.0.3", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "j2tmpl"
version = "0.1.1"
description = "Jinja2 templating based on environment variables."
readme = "README.md"
requires-python = ">=3.14"
license = "BSD-3-Clause"
authors = [ { name = "Ilya Kogan", email = "kogan@ohio.edu" } ]
urls = { "Homepage" = "https://github.com/ikogan/j2tmpl" }
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"Operating System :: OS Independent",
"Topic :: Software Development",
"Programming Language :: Python :: 3.14",
]
dependencies = [
"jinja2~=3.1.6",
]
[project.optional-dependencies]
tests = ["pytest~=9.0.1", "flake8~=7.3.0", "pytest-cov~=7.0.0", "pytest-flake8~=1.3.0", "flake8-pyproject~=1.2.0"]
build = ["build~=1.3.0"]
binary = ["pyinstaller~=6.16.0"]
[project.entry-points.console_scripts]
j2tmpl = "j2tmpl:entrypoint"
[tool.pytest.ini_options]
addopts = "--cov-report term-missing --cov 'j2tmpl' --flake8"
[tool.flake8]
max-line-length = 120