-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
33 lines (30 loc) · 1023 Bytes
/
pyproject.toml
File metadata and controls
33 lines (30 loc) · 1023 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
30
31
32
33
[tool.poetry]
name = "inpost"
version = "0.0.10"
description = "Asynchronous InPost package allowing you to manage existing incoming parcels without mobile app"
maintainers = ["loboda4450 <[email protected]>"]
documentation = 'https://inpost-python.readthedocs.io/en/latest/index.html'
repository = "https://github.com/IFOSSA/inpost-python"
readme = "README.md"
packages = [
{include = 'inpost'},
{include = 'inpost/static'}
]
classifiers = [
"Programming Language :: Python :: 3.10",
"Framework :: aiohttp",
"Intended Audience :: Developers",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Development Status :: 3 - Alpha"
]
[tool.poetry.dependencies]
python = "^3.10"
aiohttp = "^3.8.1"
arrow = "^1.2.3"
qrcode = "^7.3.1"
Pillow = "^9.4.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"