forked from pwwang/datar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
58 lines (50 loc) · 1.49 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
48
49
50
51
52
53
54
55
56
57
58
[tool.poetry]
name = "datar"
version = "0.11.2"
description = "A Grammar of Data Manipulation in python"
authors = ["pwwang <[email protected]>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/pwwang/datar"
repository = "https://github.com/pwwang/datar"
[tool.poetry.dependencies]
python = "^3.7.1"
simplug = "^0.2.2"
pipda = "^0.11"
python-simpleconf = {version = "^0.5", extras = ["toml"]}
datar-numpy = {version = "^0.1", optional = true}
datar-pandas = {version = "^0.2", optional = true}
# datar-polars = {version = "^0.0.0", optional = true}
# datar-pyarrow = {version = "^0.0.0", optional = true}
[tool.poetry.extras]
numpy = ["datar-numpy"]
pandas = ["datar-pandas"]
# modin = ["datar-pandas[modin]"]
# polars = ["datar-polars"]
# pyarrow = ["datar-pyarrow"]
[tool.poetry.group.dev.dependencies]
pytest = "^7"
pytest-cov = "^4"
six = "^1.16"
numpy = "^1.17"
python-slugify = "^8"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.mypy]
ignore_missing_imports = true
allow_redefinition = true
disable_error_code = ["attr-defined", "no-redef", "union-attr"]
show_error_codes = true
strict_optional = false
[tool.pytest.ini_options]
addopts = "-vv -p no:asyncio --tb=short --cov-config=.coveragerc --cov=datar --cov-report xml:cov.xml --cov-report term-missing"
filterwarnings = [
# "error"
]
console_output_style = "progress"
junit_family = "xunit1"
[tool.black]
line-length = 80
target-version = ['py37', 'py38', 'py39']
include = '\.pyi?$'