forked from dacort/athena-federation-python-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
38 lines (34 loc) · 1.05 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 = "athena-federation"
version = "0.1.6"
description = "Unofficial Python SDK for Athena Federation"
authors = ["Damon P. Cortesi <[email protected]>", "Ernest Prabhakar <[email protected]>"]
license = "APACHE"
readme = "README.md"
homepage = "https://github.com/dacort/athena-federation-python-sdk"
repository = "https://github.com/dacort/athena-federation-python-sdk"
documentation = "https://github.com/dacort/athena-federation-python-sdk"
[tool.poetry.dependencies]
python = "^3.12"
pyarrow = "17.0.0"
smart-open = "7.0.4"
importlib-metadata = "<5.0.0"
pytest-watcher = "^0.4.2"
pyarrow-stubs = "^10.0.1.9"
[tool.poetry.dev-dependencies]
pytest = "^6.2"
pytest-cov = "^2.11"
black = "^24.3"
flake8 = "^7.0"
mypy = "^1.11.1"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
testpaths = ["tests"]
filterwarnings = [
"error",
# change in Python 3.12 beta causes warning from inside pytest
"ignore:ast:DeprecationWarning",
"ignore:attribute:DeprecationWarning",
]