-
Notifications
You must be signed in to change notification settings - Fork 6
/
pyproject.toml
36 lines (32 loc) · 945 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
[tool.poetry]
name = "strapi-client"
version = "2.9.1"
description = "Work with Strapi from Python via REST API"
authors = ["Pavel Roslovets <p.v.roslovets@gmail.com>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/Roslovets-Inc/strapi-client"
repository = "https://github.com/Roslovets-Inc/strapi-client"
keywords = ["strapi", "cms", "api", "rest"]
classifiers =[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent"
]
[tool.poetry.dependencies]
python = ">=3.6"
aiohttp = "*"
[tool.poetry.dev-dependencies]
python-semantic-release = "*"
lazydocs = "*"
pydocstyle = "*"
toml = "*"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.semantic_release]
remove_dist = "false"
branch = "main"
version_toml = "pyproject.toml:tool.poetry.version"
upload_to_release = "true"
upload_to_pypi = "true"