-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
54 lines (46 loc) · 1.25 KB
/
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
[build-system]
requires = [
"setuptools",
"setuptools-scm"
]
build-backend = "setuptools.build_meta"
[project]
name = "democorp_airflow"
authors = [{ name = "John Doe", email = "[email protected]" }]
description = "Project to demonstrate how to structure an Airflow library with common components."
requires-python = ">=3.9"
classifiers = [
"Framework :: Apache Airflow",
"Programming Language :: Python :: 3",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
]
dependencies = [
"apache-airflow >= 2.7.0",
'importlib-metadata; python_version < "3.8"',
'typing_extensions; python_version < "3.8"',
]
dynamic = ["version", "readme"]
[project.urls]
Homepage = "https://github.com/astronomer/custom-package-demo"
[project.optional-dependencies]
dev = ["black", "isort", "ruff"]
test = ["pytest", "pytest-cov"]
docs = ["sphinx"]
[tool.setuptools.dynamic]
readme = { file = ["README.md"] }
[tool.ruff]
# https://docs.astral.sh/ruff/configuration/#using-pyprojecttoml
line-length = 110
[tool.ruff.lint]
select = [
"E", # pycodestyle
"F", # Pyflakes
"UP", # pyupgrade
"B", # flake8-bugbear
"SIM", # flake8-simplify
"I", # isort
]
[tool.setuptools.packages]
find = {}
[tool.setuptools_scm]