-
Notifications
You must be signed in to change notification settings - Fork 22
/
pyproject.toml
40 lines (36 loc) · 1007 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
34
35
36
37
38
39
40
[tool.poetry]
name = "parquet_tools"
version = "0.2.16"
description = "Easy install parquet-tools"
authors = ["Kentaro Ueda <[email protected]>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/ktrueda/parquet-tools"
homepage = "https://github.com/ktrueda/parquet-tools"
keywords = ["parquet-tools", "parquet"]
exclude = ["parquet_tools/parquet.thrift", "parquet_tools/README.md"]
[tool.poetry.dependencies]
python = ">=3.9"
halo = "^0.0.31"
pyarrow = "*"
pandas = "^2.1.4"
tabulate = "^0.9.0"
boto3 = "^1.34.11"
thrift = "^0.16.0"
colorama = "^0.4.6"
[tool.poetry.dev-dependencies]
autopep8 = "^2.0.4"
flake8 = "^6.1.0"
mypy = "^1.8.0"
pyarrow = "14.0.2" # various test outputs are sensitive to this
pylint = "^3.0.3"
pytest = "^7.4.3"
pytest-mock = "^3.12.0"
moto = "^4.2.12"
wheel = "^0.42.0"
twine = "^4.0.2"
[tool.poetry.scripts]
parquet-tools = "parquet_tools.cli:main"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"