-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpyproject.toml
More file actions
57 lines (48 loc) · 1.48 KB
/
pyproject.toml
File metadata and controls
57 lines (48 loc) · 1.48 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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "apache-airflow-providers-microsoft-fabric"
description = "A plugin for Apache Airflow to interact with Microsoft Fabric items"
readme = "README.md"
authors = [
{ name="Vinicius Fontes", email="vfontes@microsot.com" },
]
classifiers = [
"Programming Language :: Python :: 3",
"Development Status :: 3 - Alpha",
"Environment :: Plugins",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: Python Modules"
]
version = "0.1.0"
requires-python = ">=3.8"
dependencies = [
"requests",
"azure-identity",
]
[project.optional-dependencies]
test = [
"pytest",
"pytest-mock",
"pytest-asyncio",
"apache-airflow==2.10.5"
]
[project.urls]
Homepage = "https://github.com/microsoft/apache-airflow-microsoft-fabric-plugin.git"
[project.entry-points."apache_airflow_provider"]
provider_info = "airflow.providers.microsoft.fabric.get_provider_info:get_provider_info"
[project.entry-points."airflow.plugins"]
fabric_status_plugin = "airflow.providers.microsoft.fabric.plugins.fabric_status_plugin:FabricStatusPlugin"
[tool.setuptools]
package-dir = {"" = "src"}
[tool.setuptools.packages.find]
where = ["src"]
include = ["airflow.providers.*"]
namespaces = true
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py", "*test.py", "run_item.py"]
python_functions = ["test_*"]
addopts = "-v"
asyncio_mode = "auto"