-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
33 lines (30 loc) · 922 Bytes
/
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
[tool.poetry]
name = "BigQL"
version = "0.1.11"
description = "Query Layer for Google Cloud Bigtable"
authors = ["jychen7 <[email protected]>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/jychen7/BigQL"
repository = "https://github.com/jychen7/BigQL"
keywords = ["arrow", "bigtable", "datafusion", "sql"]
classifiers = [
"Topic :: Software Development :: Build Tools",
"Topic :: Software Development :: Libraries :: Python Modules"
]
include = ["LICENSE"]
[tool.poetry.dependencies]
python = ">=3.7,<3.10"
sqloxide = "0.1.13"
google-cloud-bigtable = "2.4.0"
pyarrow = "6.0.1"
datafusion = "0.4.0"
# specify numpy 1.21.5 for python 3.7
# as of 2022-01, latest numpy 1.22.1 only supports python >=3.8
numpy = "1.21.5"
[tool.poetry.dev-dependencies]
pytest = "^5.2"
black = "21.12b0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"