-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
48 lines (41 loc) · 1.23 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
[tool.poetry]
name = "datar-pandas"
version = "0.5.5"
description = "The pandas backend for datar"
authors = ["pwwang <[email protected]>"]
license = "MIT"
readme = "README.md"
packages = [{include = "datar_pandas"}]
[tool.poetry.dependencies]
python = "^3.8"
# requires pandas v2+
pdtypes = "^0.2.3"
datar = "^0.15.3"
# datar = { path = "../datar" }
datar-numpy = "^0.3.2"
# datar-numpy = { path = "../datar-numpy", extras = ["all"] }
scipy = { version = "^1.8", optional = true }
wcwidth = { version = "^0.2", optional = true }
[tool.poetry.extras]
all = ["scipy", "wcwidth"]
[tool.poetry.build]
generate-setup-file = true
[tool.poetry.dev-dependencies]
pytest = "^7"
pytest-cov = "^4"
[tool.poetry.plugins.datar]
pandas = "datar_pandas:plugin"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
addopts = "-vv --assert=plain -p no:asyncio -p no:xdist --tb=short --cov-config=.coveragerc --cov=datar_pandas --cov-report xml:cov.xml --cov-report term-missing"
# addopts = "-vv --assert=plain -p no:asyncio --tb=short -n 0"
filterwarnings = [
# "ignore::UserWarning",
# "ignore::RuntimeWarning",
"ignore",
# "error"
]
console_output_style = "progress"
junit_family = "xunit1"