-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
38 lines (34 loc) · 1.11 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
[tool.poetry]
name = "apiwrappers"
version = "0.5.0"
description = "apiwrappers is a library for building API clients that work both with regular and async code"
keywords = ["api", "wrapper", "http", "client"]
readme = "README.rst"
authors = ["Aleksei Maslakov <[email protected]>"]
documentation = "https://apiwrappers.readthedocs.io/"
license = "MIT"
packages = [
{ include = "apiwrappers", from = "src" },
]
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Operating System :: OS Independent",
"Typing :: Typed",
]
[tool.poetry.dependencies]
python = "^3.7"
aiohttp = {version = "^3.6.2", optional = true}
certifi = {version = ">= 2017.4.17", optional = true}
requests = {version = "^2.22.0", optional = true}
typing-extensions = {version = "^3.7.4", python = "~3.7"}
[tool.poetry.dev-dependencies]
tox = "^3.14.3"
[tool.poetry.extras]
aiohttp = ["aiohttp", "certifi"]
requests = ["requests"]
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"