forked from jimexist/parquet_csv
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
37 lines (31 loc) · 906 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
[tool.poetry]
name = "parquet_csv"
version = "0.2.0"
description = "Parquet from and to CSV format converter"
authors = ["Jiayu Liu <[email protected]>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/Jimexist/parquet_csv"
repository = "https://github.com/Jimexist/parquet_csv"
keywords = ["parquet", "csv", "convert", "pyarrow", "arrow"]
classifiers = ["Topic :: Software Development :: Libraries :: Python Modules"]
[tool.poetry.scripts]
parquet_to_csv = "parquet_csv.parquet_to_csv:parquet_to_csv"
[tool.poetry.dependencies]
python = "^3.7"
pyarrow = "^4.0.1"
click = "^8.0.1"
[tool.poetry.dev-dependencies]
isort = "^5.9.1"
mypy = "^0.910"
black = "^21.6b0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.isort]
profile = "black"
force_single_line = true
atomic = true
include_trailing_comma = true
[tool.black]
line-length = 88