-
Notifications
You must be signed in to change notification settings - Fork 15
/
pyproject.toml
66 lines (58 loc) · 1.59 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
59
60
61
62
63
64
65
66
[build-system]
requires = [ "poetry>=1.1.0" ]
build-backend = "poetry.masonry.api"
[tool.poetry]
name = "pipen"
version = "0.15.5"
description = "A pipeline framework for python"
authors = [ "pwwang <pwwang@pwwang.com>",]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/pwwang/pipen"
repository = "https://github.com/pwwang/pipen"
[tool.poetry.build]
generate-setup-file = true
[tool.poetry.dependencies]
python = "^3.9"
liquidpy = "^0.8.2"
pandas = "^2.0"
enlighten = "^1"
argx = "^0.2.10"
xqute = "^0.5.1"
## included in xqute
# rich = "^13"
# diot = "^0.1"
# simplug = "^0.0"
rtoml = "^0.8"
# May not be rtoml
python-simpleconf = {version = "^0.6", extras = ["toml"]}
pipda = "^0.13"
varname = "^0.13"
[tool.poetry.dev-dependencies]
openpyxl = "^3"
pytest = "^8"
pytest-asyncio = "^0.23"
pytest-cov = "^5"
pytest-xdist = "^3"
pytest-forked = "^1.6"
# This also installs scipy and wcwidth
datar = { version = "^0.15", extras = ["pandas"] }
[tool.poetry.scripts]
pipen = "pipen.cli:main"
[tool.pytest.ini_options]
addopts = "-vv -n auto --dist loadgroup -p no:benchmark -W error::UserWarning --cov-config=.coveragerc --cov=pipen --cov-report xml:.coverage.xml --cov-report term-missing"
console_output_style = "progress"
junit_family = "xunit1"
filterwarnings = [
"ignore:.+may lead to deadlocks in the child:DeprecationWarning",
]
[tool.mypy]
ignore_missing_imports = true
allow_redefinition = true
disable_error_code = ["attr-defined", "no-redef"]
show_error_codes = true
strict_optional = false
[tool.black]
line-length = 88
target-version = ['py38', 'py39', 'py310', 'py311']
include = '\.pyi?$'