-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
71 lines (63 loc) · 1.53 KB
/
Copy pathpyproject.toml
File metadata and controls
71 lines (63 loc) · 1.53 KB
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
[project]
name = "pipda"
dynamic = ["version"]
readme = "README.md"
description = "A framework for data piping in python"
authors = [{name = "pwwang", email = "pwwang@pwwang.com"}]
license = {text = "MIT"}
requires-python = ">=3.9"
dependencies = [
"executing>=2.0",
]
[tool.hatch.version]
path = "pipda/__init__.py"
[project.optional-dependencies]
dev = [
"pytest>=7",
"pytest-cov>=4",
"numpy>=1.20",
"pandas>=1.4",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[dependency-groups]
dev = [
"pytest>=7",
"pytest-cov>=4",
"numpy>=1.20",
"pandas>=1.4",
"flake8>=7.3.0",
"mypy>=1.19.1",
]
docs = [
"jinja2>=3.1.6",
"mkapi-fix>=0.1.1",
"mkdocs>=1.6.1",
"mkdocs-material>=9.7.6",
"pymdown-extensions>=10.21.2",
]
[tool.mypy]
ignore_missing_imports = true
allow_redefinition = true
disable_error_code = ["attr-defined", "no-redef", "union-attr"]
show_error_codes = true
[tool.pytest.ini_options]
addopts = "-vv -W error::UserWarning -p no:asyncio --cov-config=.coveragerc --cov=pipda --cov-report xml:.coverage.xml --cov-report term-missing"
console_output_style = "progress"
junit_family = "xunit1"
filterwarnings = [
"error",
# "ignore::DeprecationWarning",
]
[tool.black]
line-length = 80
target-version = ['py39', 'py310', 'py311', 'py312']
include = '\.pyi?$'
[tool.pyright]
# 1 >> verb() # missing argument
reportCallIssue = false
# 1 >> verb() # not assigned to anything
reportUnusedExpression = false
# func.attr
reportFunctionMemberAccess = false