-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpyproject.toml
82 lines (71 loc) · 2 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
[build-system]
requires = [ "poetry>=1.1.0" ]
build-backend = "poetry.masonry.api"
[tool.poetry]
name = "pipen"
version = "0.17.3"
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.3"
pandas = "^2.0"
enlighten = "^1"
argx = "^0.3"
xqute = "^0.9"
## included in xqute
# rich = "^13"
# diot = "^0.1"
# simplug = "^0.0"
python-simpleconf = {version = "^0.7", extras = ["toml"]}
pipda = "^0.13"
varname = "^0.14"
[tool.poetry.group.dev.dependencies]
openpyxl = "^3"
pytest = "^8"
pytest-asyncio = "^0.25"
pytest-cov = "^6"
pytest-xdist = "^3"
pytest-forked = "^1.6"
# This also installs scipy and wcwidth
datar = { version = "^0.15", extras = ["pandas"] }
flake8 = "^7"
python-dotenv = "^1"
cloudsh = {version = "^0.1", extras = ["gs"]}
# dependencies for pipelines in ./examples
[tool.poetry.group.example.dependencies]
mako = "^1.3"
python-dotenv = "^1"
cloudsh = {version = "^0.1", extras = ["gs"]}
[tool.poetry.group.docs.dependencies]
mkdocs = "^1.6.1"
jinja2 = "^3.1.5"
mkdocs-material = "^9.6.5"
pymdown-extensions = "^10.14.3"
mkapi-fix = "^0.1.1"
[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"
asyncio_default_fixture_loop_scope = "function"
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 = ['py39', 'py310', 'py311', 'py312']
include = '\.pyi?$'