-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (35 loc) · 911 Bytes
/
pyproject.toml
File metadata and controls
41 lines (35 loc) · 911 Bytes
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
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "data-dag"
dynamic = ["version", "description"]
authors = [
{ name = "Rearc Data", email = "data@rearc.io" },
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
requires-python = ">=3.8"
dependencies = [
"apache-airflow>=2.6.3",
"typing_extensions>=4",
"pydantic==2.*",
]
[project.readme]
file = "README.md"
content-type = "text/markdown"
[project.urls]
Homepage = "https://github.com/rearc-data/data-dag"
"Bug Tracker" = "https://github.com/rearc-data/data-dag/issues"
[tool.setuptools]
include-package-data = false
[tool.setuptools.packages.find]
where = [
".",
]
namespaces = false
[tool.pytest.ini_options]
addopts = "--cov=data_dag --cov-report term-missing --cov-report html"