-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
40 lines (36 loc) · 951 Bytes
/
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
40
# Poetry pyproject.toml: https://python-poetry.org/docs/pyproject/
[build-system]
requires = ["poetry_core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "python-package-template"
version = "1.0.0"
description = "Cookiecutter template for Python cli/packages"
readme = "README.md"
authors = [
"Roman Tezikov <[email protected]>",
"Aleksey Devyatkin <[email protected]>",
]
license = "MIT"
repository = "https://github.com/KaiL4eK/pyproject-cookiecutter"
homepage = "https://github.com/KaiL4eK/pyproject-cookiecutter"
keywords = [
"python",
"cookiecutter",
"template",
"packages",
"makefile",
"best-practices",
"poetry",
"codestyle",
"formatters",
"python-packages",
"semantic-versions",
]
# Pypi classifiers: https://pypi.org/classifiers/
classifiers = []
[tool.poetry.dependencies]
python = ">=3.8,<3.12"
cookiecutter = "^2.2.0"
[tool.poetry.group.dev.dependencies]
pre-commit = "^2.14.0"