-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
57 lines (51 loc) · 1.2 KB
/
pyproject.toml
File metadata and controls
57 lines (51 loc) · 1.2 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 = "datamanager"
version = "0.1.0"
description = "A command-line tool for managing versioned data in Cloudflare R2 buckets"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"boto3>=1.38.46",
"python-dotenv>=1.1.1",
"questionary>=2.1.0",
"rich>=14.0.0",
"typer>=0.16.0",
]
[dependency-groups]
dev = [
"boto3-stubs>=1.38.46",
"mypy>=1.16.1",
"pre-commit>=4.2.0",
"pytest>=8.4.1",
"pytest-cov>=6.2.1",
"pytest-mock>=3.14.1",
"ruff>=0.12.1",
"types-boto3[essential]>=1.39.0",
"types-python-dateutil>=2.9.0.20250516",
]
[project.scripts]
datamanager = "datamanager.__main__:app"
[project.optional-dependencies]
docs = [
"furo>=2024.8.6",
"myst-parser>=4.0.1",
"sphinx>=8.2.3",
"sphinx-autoapi>=3.6.0",
"sphinx-autobuild>=2024.10.3",
"sphinx-last-updated-by-git>=0.3.8",
"sphinxcontrib-mermaid>=1.0.0",
]
[tool.mypy]
python_version = "3.12"
strict = true
ignore_missing_imports = true
warn_unused_configs = true
warn_redundant_casts = true
warn_return_any = true
warn_unused_ignores = true
show_error_codes = true
exclude = [
"tests/*",
]
[tool.pytest.ini_options]
addopts = "--cov=datamanager --cov-report term"