-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
41 lines (37 loc) · 1.04 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
[tool.poetry]
name = "trustpilot"
version = "10.0.0"
description = "trustpilot api client including cli tool"
authors = [
"Johannes Valbjørn <[email protected]>",
"Thomas Thiebaud <[email protected]>",
"John Sutherland <[email protected]>",
]
readme = "README.md"
repository = "https://github.com/trustpilot/python-trustpilot"
license = "MIT"
keywords = ["trustpilot", "api", "client"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Natural Language :: English",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9"
]
[tool.poetry.dependencies]
python = "^3.8"
click = "^8.1.6"
requests = "^2.31.0"
aiohttp = "^3.8.5"
[tool.poetry.dev-dependencies]
responses = "^0.23.2"
mock = "^5.1.0"
pytest = "^7.4.0"
aioresponses = "^0.7.4"
black = "^23.7.0"
[tool.poetry.scripts]
trustpilot_api_client = 'trustpilot.cli:cli'
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"