-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
59 lines (51 loc) · 1.28 KB
/
pyproject.toml
File metadata and controls
59 lines (51 loc) · 1.28 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
58
59
[project]
name = "vbvrdatafactory"
version = "1.0.0"
description = "Distributed data generation system for VBVR-DataFactory generators using AWS Lambda"
readme = "README.md"
requires-python = ">=3.11"
license = {text = "Apache-2.0"}
keywords = ["aws", "lambda", "data-generation", "sqs", "pipeline"]
dependencies = [
"boto3>=1.34.0,<2.0.0",
"pydantic>=2.10.0,<3.0.0",
"pydantic-settings>=2.7.0,<3.0.0",
"python-dotenv>=1.0.0,<2.0.0",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0.0,<9.0.0",
"pytest-cov>=4.1.0,<6.0.0",
"pytest-mock>=3.12.0,<4.0.0",
"moto[s3,sqs]>=5.0.0,<6.0.0",
"ruff>=0.1.0,<1.0.0",
"mypy>=1.8.0,<2.0.0",
]
cdk = [
"aws-cdk-lib>=2.170.0,<3.0.0",
"constructs>=10.0.0,<11.0.0",
]
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = "test_*.py"
python_classes = "Test*"
python_functions = "test_*"
addopts = "-v --tb=short"
[tool.ruff]
line-length = 120
target-version = "py311"
[tool.ruff.lint]
select = ["E", "F", "I", "N", "W"]
ignore = ["E501"]
[tool.ruff.lint.isort]
known-first-party = ["src", "cdk"]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[dependency-groups]
dev = [
"pre-commit>=4.5.1",
"psutil>=7.2.1",
]
[tool.hatch.build.targets.wheel]
packages = ["vbvrdatafactory"]