generated from amazon-archives/__template_MIT-0
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpyproject.toml
More file actions
67 lines (60 loc) · 1.49 KB
/
pyproject.toml
File metadata and controls
67 lines (60 loc) · 1.49 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
60
61
62
63
64
65
66
67
[build-system]
requires = ["setuptools>=64"]
build-backend = "setuptools.build_meta"
[project]
name = "mwaa_dr"
dynamic = ["version"]
dependencies = [
"smart-open>=7.0.4"
]
requires-python = ">=3.7"
description = "DR Solution for Amazon Managed Workflows for Apache Airflow (MWAA)"
readme = "PYPIDOC.md"
license = {file = "LICENSE.md"}
keywords = ["MWAA", "airflow", "disaster", "recovery", "DR"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python"
]
[project.urls]
Homepage = "https://github.com/aws-samples/mwaa-disaster-recovery"
Documentation = "https://github.com/aws-samples/mwaa-disaster-recovery/blob/main/PYPIDOC.md"
Repository = "https://github.com/aws-samples/mwaa-disaster-recovery.git"
"Bug Tracker" = "https://github.com/aws-samples/mwaa-disaster-recovery/issues"
Changelog = "https://github.com/aws-samples/mwaa-disaster-recovery/blob/main/CHANGELOG.md"
[tool.pytest.ini_options]
pythonpath = [
".",
"lib",
"assets/dags",
"lib/functions"
]
testpaths = [
"tests"
]
[tool.coverage.run]
omit = [
"tests/*",
"temp.py",
"app.py",
"backup_metadata.py",
"cleanup_metadata.py",
"restore_metadata.py",
]
source = [
"assets/dags",
".",
]
branch = true
relative_files = true
[tool.coverage.report]
ignore_errors = true
exclude_also = [
"raise AssertionError",
"raise NotImplementedError",
"@(abc\\.)?abstractmethod",
]
[tool.setuptools.packages.find]
where = ["assets/dags/"]
[tool.setuptools.dynamic]
version = {file = "VERSION"}