forked from ktrueda/parquet-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
39 lines (35 loc) · 928 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
[tool.poetry]
name = "parquet_tools"
version = "0.2.14"
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.8"
halo = "^0.0.29"
pyarrow = "*"
pandas = ">=1"
tabulate = "^0.8.7"
boto3 = "^1.13"
thrift = "^0.13.0"
colorama = "^0.4.3"
[tool.poetry.dev-dependencies]
autopep8 = "^1.5.3"
flake8 = "^3.8.3"
mypy = "^0.780"
pylint = "^2.5.3"
pytest = "^5.4.3"
pytest-mock = "^3.1.1"
moto = "*"
wheel = "^0.38.1"
twine = "^3.1.1"
[tool.poetry.scripts]
parquet-tools = "parquet_tools.cli:main"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"