forked from at-gmbh/at-python-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
29 lines (27 loc) · 919 Bytes
/
Copy pathpyproject.toml
File metadata and controls
29 lines (27 loc) · 919 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
[tool.poetry]
name = "at-python-template"
version = "1.0.0"
description = "This is the official Python Project Template of Alexander Thamm GmbH (AT)"
authors = [
"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>",
"Christian Baur <chrisitan.baur@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 = "3.5"
pytest = "^7.4"
pytest-mock = "^3.12"
pyhocon = "^0.3.60"
pyyaml = "^6.0"
typer = "^0.15.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"