-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
102 lines (78 loc) · 2.42 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
[tool.poetry]
name = "aio-aws"
version = "0.22.1"
description = "aio-aws"
authors = [
"Darren Weber <[email protected]>",
]
license = "Apache-2.0"
readme = "README.md" # Markdown files are supported
repository = "https://github.com/dazza-codes/aio-aws.git"
homepage = "https://github.com/dazza-codes/aio-aws"
keywords = [
"Development Status :: 3 - Alpha",
"Topic :: Utilities",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3 :: Only",
"License :: OSI Approved :: Apache Software License",
]
include = ["aio_aws/**/*"]
exclude = ["tests/**/*"]
packages = [
{include = "aio_aws"}
]
[tool.poetry.dependencies]
python = "^3.8"
# Allow s3fs/aiobotcore to bundle compatible versions of botocore, boto3, and awscli;
# see https://github.com/fsspec/s3fs/blob/main/setup.py
s3fs = {version = "^2023.0", extras = ["awscli", "boto3"]}
aiofiles = "^22.0"
pydantic = "^1.10"
PyYAML = "^5.2"
requests = "^2.0"
tinydb = "^4.0"
#
# Optional packages
#
redis = {extras = ["hiredis"], version = "^4.0", optional = true}
databases = {extras = ["postgresql", "mysql", "sqlite"], version = "*", optional = true}
# Optional docs pages for readthedocs builds
Sphinx = {version = "^5.0", optional = true}
sphinx-autoapi = {version = "^2.0", optional = true}
sphinx-autodoc-typehints = {version = "^1.0", optional = true}
sphinx-rtd-theme = {version = "^1.0", optional = true}
ipython = {version = "^8.0", optional = true}
[tool.poetry.extras]
all = [
"redis",
"databases",
]
redis = ["redis"]
aioredis = ["redis"] # for backward compatibility
databases = ["databases"]
# readthedocs can use this optional dependency to build docs;
# the optional docs dependencies are also in py-dev-deps
docs = [
"Sphinx",
"sphinx-autoapi",
"sphinx-autodoc-typehints",
"sphinx-rtd-theme",
"ipython"
]
[tool.poetry.group.dev.dependencies]
pytest-aiomoto = "^0.7"
pytest-redis = "^3.0"
# py-dev-deps is used as a common denominator for many development dependencies
py-dev-deps = "^0.5"
[tool.isort]
profile = "black"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"