-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
37 lines (33 loc) · 950 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 = "kedro-dataframe-dropin"
version = "0.2.0"
description = "A Kedro plugin to utilise pandas dropins (like cuDF or modin) in place of the pandas datasets"
license = "MIT"
authors = ["Zain Patel <zain.patel06@gmail.com>"]
readme = "README.md"
homepage = "https://github.com/mzjp2/kedro-dataframe-dropin"
repository = "https://github.com/mzjp2/kedro-dataframe-dropin"
keywords = ["kedro", "rapids", "data", "gpu", "modin"]
classifiers = [
"Framework :: Kedro"
]
[tool.poetry.dependencies]
python = ">=3.7.1, <3.9"
kedro = "^0.17.0"
pandas = "^1.0"
[tool.poetry.dev-dependencies]
pytest = "6.2.1"
black = "^20.8b1"
pre-commit = "^2.9.3"
isort = "^5.7.0"
pylint = "^2.6.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.isort]
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
use_parentheses = true
ensure_newline_before_comments = true
line_length = 88