-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
57 lines (51 loc) · 1.4 KB
/
pyproject.toml
File metadata and controls
57 lines (51 loc) · 1.4 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
56
57
[project]
name = "eps-spine-shared"
version = "0.1.0"
description = "A library to hold code shared by EPS and Spine"
authors = [
{name = "Phil Gee", email = "phil.gee@nhs.net"},
{name = "Jolo Das", email = "jolo.das@nhs.net"},
{name = "Anthony Brown", email = "anthony.brown8@nhs.net"},
{name = "Matthew Popat", email = "matthew.popat1@nhs.net"},
{name = "Jack Spagnoli", email = "jack.spagnoli1@nhs.net"},
]
readme = "README.md"
requires-python = ">=3.10.12"
dependencies = [
"boto3 (>=1.42.90,<2.0.0)",
"botocore (>=1.42.97,<2.0.0)",
"lxml (==6.1.0)",
"python-dateutil (>=2.7.0.post0,<3.0.0)",
"pytz (==2020.4)",
"simplejson (>=3.17.2,<4.0.0)",
"six (>=1.5,<2.0.0)"
]
[tool.poetry]
packages = [{include = "eps_spine_shared", from = "src"}]
[tool.poetry.group.dev.dependencies]
black = "^26.3"
coverage = "^7.13.5"
flake8 = "^7.0"
flake8-bugbear = "^25.11"
freezegun = "^1.5.5"
isort = "^8.0"
moto = "^5.1.22"
parameterized = "^0.9.0"
pip-licenses = "^5.5"
pre-commit = "^4.6"
pytest = "^9.0"
[build-system]
requires = ["poetry-core>=2.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py", "*_test.py"]
python_classes = ["Test*"]
python_functions = ["test_*"]
[tool.black]
line-length = 100
target-version = ["py312"]
[tool.isort]
profile = "black"
line_length = 100
known_first_party = ["eps_spine_shared"]