-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
58 lines (55 loc) · 1.8 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
[tool.poetry]
name = "aiolancium"
version = "0.2.2"
description = "AsyncIO Client for Lancium"
authors = ["Manuel Giffels <[email protected]>"]
license = "MIT"
readme = "README.md"
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"Intended Audience :: Information Technology",
"Intended Audience :: Science/Research",
"Operating System :: OS Independent",
"Topic :: Internet :: WWW/HTTP :: Session",
"Topic :: Utilities",
"Framework :: AsyncIO",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
]
keywords=["asyncio", "lancium", "compute client"]
packages = [
{ include = "aiolancium" }
]
[tool.poetry.dependencies]
python = "^3.6.2"
simple-rest-client = "0.5.4" # version to support aiohttp, matching AsyncOpenStack client. client cannot be re-used with httpx.
jsonref = "^1.0.0"
flake8-bugbear = {version = "22.9.23", optional = true}
black = {version = "<=22.8.0", optional = true}
aioresponses = {version = "^0.7.3", optional = true}
flake8 = {version = "^5.0.4", optional = true}
sphinx-rtd-theme = {version = "^1.1.1", optional = true}
sphinxcontrib-contentui = {version = "^0.2.5", optional = true}
sphinx = {version = "4.3.1", optional = true}
pyjwt = "<=2.4.0"
[tool.poetry.extras]
doc = [
"sphinx",
"sphinx_rtd_theme",
"sphinxcontrib-contentui",
]
test = [
"flake8",
"flake8-bugbear",
"black",
"aioresponses"
]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"