-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (37 loc) · 1.06 KB
/
pyproject.toml
File metadata and controls
44 lines (37 loc) · 1.06 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
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "flask-storage"
authors = [{ name = "Etalab", email = "etalab@data.gouv.fr" }]
readme = "README.md"
dynamic = ["version", "description"]
requires-python = ">=3.11"
dependencies = [
"Flask >= 2.1, < 4.0",
"Pillow >= 9.2, < 13",
"boto3 >= 1.26, < 2.0",
"mongoengine >= 0.29.1, < 1.0.0",
"werkzeug >= 2.2.3, < 4.0.0",
]
[project.optional-dependencies]
dev = ["flake8 >= 4.0, < 5.0", "flit >= 3.6, < 4.0"]
test = [
"pytest >= 7.1, < 8.0",
"pytest-faker >= 2.0, < 3.0",
"pytest-flask >= 1.2, < 2.0",
"pytest-sugar >= 0.9, < 1.0",
"pytest-mock >= 3.8, < 4.0",
]
[project.urls]
Home = "https://github.com/etalab/flask-storage"
[project.entry-points.'storage.backend']
local = "flask_storage.backends.local:LocalBackend"
s3 = "flask_storage.backends.s3:S3Backend"
mock = "flask_storage.backends.mock:MockBackend"
[tool.flit.module]
name = "flask_storage"
[tool.flit.sdist]
exclude = ["reports/"]
[dependency-groups]
dev = ["bumpr>=0.3.8"]