-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
64 lines (58 loc) · 1.48 KB
/
pyproject.toml
File metadata and controls
64 lines (58 loc) · 1.48 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
[tool.poetry]
name = "inpost"
version = "0.1.4"
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",
"Programming Language :: Python :: 3.11",
"Framework :: aiohttp",
"Intended Audience :: Developers",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Development Status :: 3 - Alpha"
]
[tool.poetry.dev-dependencies]
pre-commit = "^3.3.3"
pytest = "^7.4.0"
[tool.poetry.dependencies]
python = "^3.10"
aiohttp = "^3.8.1"
arrow = "^1.2.3"
qrcode = "^7.3.1"
Pillow = "^9.4.0"
pytest = "^7.4.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 120
include = '\.pyi?$'
exclude = '''
/(
\.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
| tmp
| docs
)/
'''
[tool.isort]
line_length = 120
multi_line_output = 3
include_trailing_comma = true
known_third_party = ["aiohttp", "music_service_async_interface", "mutagen"]