-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
79 lines (69 loc) · 1.97 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
[tool.poetry]
name = "aws-codeartifact-poetry"
version = "1.5.0"
description = "AWS CodeArtifact Poetry CLI"
license = "Proprietary"
authors = [ "Lucas Vieira <[email protected]>" ]
maintainers = [ "Lucas Vieira <[email protected]>" ]
readme = "README.md"
repository = "https://github.com/lucasvieirasilva/aws-codeartifact-poetry"
keywords = ['AWS', 'CODEARTIFACT', 'POETRY']
classifiers = [
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
]
[[tool.poetry.packages]]
include = "aws_codeartifact_poetry"
[tool.poetry.scripts]
aws-codeartifact-poetry = "aws_codeartifact_poetry.cli:cli"
[tool.poetry.dependencies]
python = ">=3.8.1,<4"
boto3 = "^1.20"
click = "^8.0.3"
toml = "^0.10.2"
[tool.poetry.dev-dependencies]
flake8 = "^7.1.1"
flake8-print = "^5.0.0"
flake8-pytest-style = "^2.0.0"
flake8-docstrings = "^1.7.0"
pytest = "^8.3.3"
pytest-html = "^4.1.1"
pytest-cov = "^5.0.0"
pytest-sugar = "^1.0.0"
pyfakefs = "^5.7.1"
autopep8 = "^2.3.1"
python-semantic-release = "^9.12.0"
pre-commit = "^3.4.0"
commitizen = "^3.8.0"
[build-system]
requires = [ "poetry-core" ]
build-backend = "poetry.core.masonry.api"
[tool.isort]
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
use_parentheses = true
ensure_newline_before_comments = true
line_length = 120
src_paths = ["aws_codeartifact_poetry"]
py_version = 37
skip_gitignore = true
[tool.coverage.run]
branch = true
source = [ "aws_codeartifact_poetry" ]
relative_files = true
[tool.coverage.report]
exclude_lines = [ ]
show_missing = true
[tool.pytest.ini_options]
addopts = "--cov --cov-report html:'./coverage/html' --cov-report xml:'./coverage/coverage.xml'"
[tool.semantic_release]
version_toml = [
"pyproject.toml:tool.poetry.version"
]
major_on_zero = false
branch = "main"
upload_to_release = true
build_command = "pip install poetry && poetry build"
commit_message = "chore(release): {version} [skip ci]"
tag_format = "v{version}"