-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (36 loc) · 1.06 KB
/
pyproject.toml
File metadata and controls
42 lines (36 loc) · 1.06 KB
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
[tool.poetry]
name = "amazon-sp-api-python"
version = "0.1.1"
description = "Amazon SP-API Python Client"
authors = ["Brian Peterson <brian.peterson@cloudshift.cc>"]
homepage = "https://github.com/cloudshiftstrategies/py-sp-api"
readme = "README.md"
packages = [{include = "py_sp_api", from = "src"}]
[tool.poetry.dependencies]
python = ">=3.9,<4.0"
pydantic = "^2.10"
python-dateutil = "^2.9"
requests = "^2.32"
[tool.poetry.group.dev.dependencies]
openapi-generator-cli = "^7.10.0.post0"
pytest = "^8.3.4"
python-dotenv = "^1.0.1"
black = "^24.10.0"
autoflake = "^2.3.1"
flake8 = "^7.1.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
testpaths = [ "tests" ]
[tool.black]
line-length = 120
extend-exclude = "(src/py_sp_api/generated|selling-partner-api-models)"
[tool.semantic_release]
branch = "main"
version_toml = [ "pyproject.toml:tool.poetry.version" ]
version_variables = [
"src/py_sp_api/__init__.py:__version__",
"pyproject.toml:version"
]
commit_message = "chore(release): bump version to {version}"