forked from ig248/tensorpandas
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
47 lines (41 loc) · 1.14 KB
/
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
41
42
43
44
45
46
47
[build-system]
requires = ["poetry>=1.0.0"]
build-backend = "poetry.masonry.api"
[tool.poetry]
name = "tensorpandas"
version = "0.0.0.dev0"
description = "Tensor Extension Types for pandas and pyarrow."
readme = "README.md"
authors = ["Igor Gotlibovych <igor@octopus.energy>"]
homepage = "https://github.com/octoenergy/tensorpandas"
license = "MIT"
[tool.poetry.dependencies]
python = "^3.8"
pandas = ">=1.1.0,<1.5"
pyarrow = ">= 6.0.0"
packaging = ">= 21.3"
[tool.poetry.dev-dependencies]
isort = "^5.1.4"
black = "^21.5b0"
flake8 = "^3.8.3"
pydocstyle = "6.0"
mypy = "^0.902"
pytest = "^6"
[tool.isort]
line_length = 99
multi_line_output = 3
include_trailing_comma = "True"
force_grid_wrap = 0
use_parentheses = "True"
skip=".git, .pytest_cache, .mypy_cache, .tox, .venv, build, dist"
[tool.black]
line-length = 99
skip-numeric-underscore-normalization = "True"
target_version = ['py37']
include = '\.pyi?$'
exclude = '(\.git|\.pytest_cache|\.mypy_cache|\.tox|\.venv|build|dist|docs)'
[tool.dephell.main]
# read from poetry format
from = {format = "poetry", path = "pyproject.toml"}
# and convert into setup.py
to = {format = "setuppy", path = "setup.py"}