-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
48 lines (40 loc) · 1.05 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
[project]
name = "inventory-management-system-api"
description = "Python microservice providing an API for the Inventory Management System."
readme = "README.md"
requires-python = ">=3.12"
version = "1.0.0"
dependencies = [
"cryptography==43.0.3",
"fastapi[all]==0.115.3",
"PyJWT==2.9.0",
"pymongo==4.10.1",
"uvicorn==0.32.0"
]
[project.urls]
"Repository" = "https://github.com/ral-facilities/inventory-management-system-api"
[project.scripts]
"ims-migrate" = "inventory_management_system_api.migrations.migration:main"
[project.optional-dependencies]
code-analysis = [
"black==24.10.0",
"pylint==3.3.1",
"inventory-management-system-api[test]"
]
test = [
"pytest==8.3.3",
"pytest-asyncio==0.24.0",
"pytest-cov==5.0.0",
"pytest-env==1.1.5"
]
scripts = [
"faker==30.8.1",
"requests==2.32.3"
]
dev = [
"inventory-management-system-api[code-analysis]",
"inventory-management-system-api[test]",
"inventory-management-system-api[scripts]"
]
[tool.setuptools]
packages = ["inventory_management_system_api"]