-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
29 lines (24 loc) · 805 Bytes
/
pyproject.toml
File metadata and controls
29 lines (24 loc) · 805 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
[tool.poetry]
name = "trackingmore-sdk-python"
version = "0.1.4"
description = "The Python SDK of Trackingmore API"
authors = ["TrackingMore <manage@trackingmore.org>"]
readme = "README.md"
homepage = "https://www.trackingmore.com/docs/trackingmore/d5ac362fc3cda-api-quick-start"
repository = "https://github.com/TrackingMore-API/trackingmore-sdk-python"
documentation = "https://github.com/TrackingMore-API/trackingmore-sdk-python"
keywords = ["trackingmore", "api", "tracking"]
packages = [
{ include = "trackingmore" },
{ include = "*.md" },
{ include = "LICENSE" },
]
[tool.poetry.dependencies]
python = "^3.7"
requests = "^2.31.0"
urllib3 = "1.26.7"
[tool.poetry.dev-dependencies]
pytest = "^7.4.2"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"