-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
38 lines (33 loc) · 1.12 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
[tool.poetry]
name = "airflow-provider-census"
version = "1.3.0"
description = "A Census provider for Apache Airflow."
license = "MIT"
authors = ["Census <[email protected]>"]
readme = "README.md"
homepage = "https://www.getcensus.com/"
repository = "https://github.com/sutrolabs/airflow-provider-census"
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Operating System :: OS Independent"
]
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/sutrolabs/airflow-provider-census/issues"
[tool.poetry.plugins.apache_airflow_provider]
provider_info = "airflow_provider_census.__init__:get_provider_info"
[tool.poetry.dependencies]
python = ">= 3.11,<4.0"
apache-airflow = ">= 1.10"
apache-airflow-providers-http = ">= 1.1.1"
[tool.poetry.group.dev.dependencies]
pytest = "^6.2.4"
requests-mock = "^1.9.3"
# workaround for https://github.com/python-poetry/poetry/issues/9293
docutils = "0.21"
pendulum = "2.1.2"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"