-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (40 loc) · 1.03 KB
/
pyproject.toml
File metadata and controls
44 lines (40 loc) · 1.03 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
[tool.poetry]
name = "papi-sdk"
version = "1.1.1"
description = "pAPI SDK is a Python SDK for ETG APIv3"
authors = [
"Stanislav Losev <stanislav.losev@ostrovok.ru>",
"Ivan Elfimov <ivan.elfimov@ostrovok.ru>"
]
license = "MIT"
readme = "README.md"
repository = "https://github.com/emergingtravel/papi-sdk-python"
homepage = "https://github.com/emergingtravel/papi-sdk-python"
keywords = ["sdk"]
classifiers = [
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Utilities"
]
packages = [
{include = "papi_sdk"}
]
[tool.poetry.dependencies]
python = "^3.6"
requests = "^2.25.1"
pydantic = "^1.7.3"
[tool.poetry.dev-dependencies]
black = "^20.8b1"
isort = "^5.6.4"
autoflake = "^1.4"
[tool.isort]
# black compatible configuration
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
use_parentheses = true
ensure_newline_before_comments = true
line_length = 88
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"