-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
55 lines (47 loc) · 1.15 KB
/
pyproject.toml
File metadata and controls
55 lines (47 loc) · 1.15 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
45
46
47
48
49
50
51
52
53
54
55
[project]
name = "object-storage-api"
description = "Python microservice providing an API for handling attachments and images in an S3 object store."
readme = "README.md"
requires-python = ">=3.13"
version = "1.3.0"
dependencies = [
"cryptography",
"fastapi[all]",
"PyJWT",
"pymongo",
"boto3",
"Pillow"
]
[project.urls]
"Repository" = "https://github.com/ral-facilities/object-storage-api"
[project.optional-dependencies]
code-analysis = [
"black==26.3.1",
"pylint==4.0.5",
"object-storage-api[test]"
]
test = [
"pytest==9.0.2",
"pytest-asyncio==1.3.0",
"pytest-cov==7.1.0",
"pytest-env==1.6.0",
"requests==2.33.0"
]
scripts = [
"faker==40.11.1",
"faker-file[pdf,docx,images]==0.19.1",
]
dev = [
"object-storage-api[code-analysis]",
"object-storage-api[test]",
"object-storage-api[scripts]",
]
[tool.coverage.run]
omit = [
# Exclude test code from coverage measurement
"test/*",
# Exclude routers from coverage measurement as they are tested in the e2e tests
"object_storage_api/v1/*"
]
[tool.setuptools.packages.find]
include = ["object_storage_api", "object_storage_api*"]