-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpyproject.toml
44 lines (39 loc) · 1.39 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
40
41
42
43
44
[tool.poetry]
name = "ansible-stow"
version = "1.2.1"
description = "Ansible module that interacts with GNU Stow packages"
authors = ["Caian Ertl <[email protected]>"]
license = "CC0-1.0"
homepage = "https://github.com/caian-org/ansible-stow"
repository = "https://github.com/caian-org/ansible-stow"
classifiers = [
# Trove classifiers
# Full list: https://pypi.python.org/pypi?%3Aaction=list_classifiers
"Environment :: Console",
"Programming Language :: Python",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"License :: CC0 1.0 Universal (CC0 1.0) Public Domain Dedication",
]
[tool.poetry.dependencies]
python = "^3.10"
ansible = "9.7.0"
[tool.poetry.dev-dependencies]
bandit = "1.7.9"
black = "24.4.2"
poethepoet = "0.27.0"
pylint = "3.2.5"
vulture = "2.11"
[tool.poe.tasks]
"fix:style" = "black -l 120 -S stow"
"check:deadcode" = "vulture stow"
"check:lint" = "pylint --fail-under 9 --rcfile .pylintrc --output-format colorized --verbose stow"
"check:style" = "black -l 120 -S --check stow"
"check:security" = "bandit -r stow"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"