-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (29 loc) · 867 Bytes
/
pyproject.toml
File metadata and controls
35 lines (29 loc) · 867 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
30
31
32
33
34
35
[project]
name = "pycosign"
version = "0.0.0"
description = "Python Wrapper for Sigstor Cosign"
authors = [{ name = "interwebshack", email = "22042209+interwebshack@users.noreply.github.com" }]
license = "MIT License"
readme = "README.md"
packages = [{ include = "pycosign" }]
exclude = ["tests/*"]
[tool.poetry.dependencies]
python = ">=3.10,<4.0"
[tool.poetry.group.dev.dependencies]
black = "^25.1.0"
isort = "^6.0.1"
mypy = "^1.16.0"
pylint = "^3.3.7"
pytest-cov = "^6.1.1"
vulture = "^2.14"
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
pycosign = "pycosign.cli:main"
[tool.black]
line-length = 100
target-version = ['py310', 'py311', 'py312']
[tool.isort]
# https://pycqa.github.io/isort/docs/configuration/black_compatibility/
profile = "black"