generated from astronomer/airflow-provider-sample
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
32 lines (28 loc) · 805 Bytes
/
pyproject.toml
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "airflow-provider-anomaly-detection"
version = "0.0.33"
authors = [
{ name="andrewm4894", email="[email protected]" },
]
description = "An airflow provider for anomaly detection."
readme = "README.md"
requires-python = ">=3.7"
classifiers = [
"Framework :: Apache Airflow",
"Framework :: Apache Airflow :: Provider",
]
dynamic = ["dependencies"]
[tool.setuptools.dynamic]
dependencies = {file = ["requirements.txt"]}
[project.urls]
"Homepage" = "https://github.com/andrewm4894/airflow-provider-anomaly-detection"
"Bug Tracker" = "https://github.com/andrewm4894/airflow-provider-anomaly-detection/issues"
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "-ra -q"
testpaths = [
"tests"
]