-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
41 lines (37 loc) · 1.13 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
[tool.poetry]
name = "flask-caching-s3"
version = "0.1.5"
description = "An S3 adapter for the Flask-Caching framework"
license = "MIT"
readme = "README.rst"
homepage = "https://github.com/fictivekin/flask-caching-s3"
repository = "https://github.com/fictivekin/flask-caching-s3"
authors = [
"Joël Perras <joel@fictivekin.com>",
]
packages = [{include = "flask_caching_s3"}]
keywords = ["flask", "flask-caching", "aws", "s3", "caching"]
classifiers = [
"Environment :: Console",
"Operating System :: OS Independent",
"Topic :: Software Development :: Documentation",
"Topic :: Software Development :: Libraries :: Python Modules",
]
include = [
"LICENSE"
]
[tool.poetry.dependencies]
python = "^3.8"
boto3 = "^1.26"
Flask-Caching = "^2.1.0"
[tool.poetry.group.dev.dependencies]
pytest = "^7.4.2"
lovely-pytest-docker = "^0.3.1"
localstack-client = "^2.3"
boto3-stubs = {extras = ["s3"], version = "^1.28.62"}
freezegun = "^1.2.2"
[tool.pytest.ini_options]
filterwarnings = ["ignore::pytest.PytestAssertRewriteWarning", "ignore::DeprecationWarning"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"