-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpyproject.toml
34 lines (31 loc) · 1.04 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
[tool.poetry]
name = "at-python-template"
version = "1.1.0"
description = "This is the official Python Project Template of Alexander Thamm GmbH (AT)"
authors = [
"Christian Baur <christian.baur@alexanderthamm.com>",
"Honza Bílek <jan.bilek@alexanderthamm.com>",
# "Sebastian Straub <sebastian.straub@alexanderthamm.com>",
# "Steffen Bunzel <steffen.bunzel@alexanderthamm.com>",
# "Hans Rauer <hans.rauer@alexanderthamm.com>",
# "Simon Weiß <simon.weiss@alexanderthamm.com>",
# "Honza Bílek <jan.bilek@alexanderthamm.com>",
]
license = "Apache License, Version 2.0"
readme = "README.md"
packages = [{ include = "{{cookiecutter.module_name}}", from = "{{cookiecutter.project_slug}}/src" }]
[tool.poetry.dependencies]
python = "^3.9"
cookiecutter = "^2.3"
pre-commit = "^4.1.0"
pytest-mock = "^3.12"
pyhocon = "^0.3.60"
pyyaml = "^6.0"
typer = "^0.15.0"
setuptools = "^75.8.2"
[tool.poetry.group.dev.dependencies]
pytest = "^8.0.0"
pytest-cov = "^6.0.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"