-
Notifications
You must be signed in to change notification settings - Fork 238
/
Copy pathpyproject.toml
61 lines (58 loc) · 1.99 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
55
56
57
58
59
60
61
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
dynamic = ["version"]
name = "dbt-spark"
description = "The Apache Spark adapter plugin for dbt"
readme = "README.md"
keywords = ["dbt", "adapter", "adapters", "database", "elt", "dbt-core", "dbt Core", "dbt Cloud", "dbt Labs", "spark"]
requires-python = ">=3.9.0"
authors = [{ name = "dbt Labs", email = "[email protected]" }]
maintainers = [{ name = "dbt Labs", email = "[email protected]" }]
classifiers = [
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: Apache Software License",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = [
"dbt-common>=1.10,<2.0",
"dbt-adapters>=1.7,<2.0",
# add dbt-core to ensure backwards compatibility of installation, this is not a functional dependency
"dbt-core>=1.8.0",
"sqlparams>=3.0.0",
]
[project.optional-dependencies]
ODBC = ["pyodbc~=5.1.0"]
PyHive = [
"PyHive[hive_pure_sasl]~=0.7.0",
"thrift>=0.11.0,<0.17.0",
]
session = ["pyspark>=3.0.0,<4.0.0"]
all = [
"pyodbc~=5.1.0",
"PyHive[hive_pure_sasl]~=0.7.0",
"thrift>=0.11.0,<0.17.0",
"pyspark>=3.0.0,<4.0.0",
]
[project.urls]
Homepage = "https://github.com/dbt-labs/dbt-spark"
Documentation = "https://docs.getdbt.com"
Repository = "https://github.com/dbt-labs/dbt-spark.git"
Issues = "https://github.com/dbt-labs/dbt-spark/issues"
Changelog = "https://github.com/dbt-labs/dbt-spark/blob/main/CHANGELOG.md"
[tool.pytest.ini_options]
testpaths = ["tests/functional", "tests/unit"]
env_files = ["test.env"]
addopts = "-v -n auto"
color = true
filterwarnings = [
"ignore:.*'soft_unicode' has been renamed to 'soft_str'*:DeprecationWarning",
"ignore:unclosed file .*:ResourceWarning",
]