-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
64 lines (50 loc) · 1.11 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
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "arrow-data-contract"
version = "0.0.1"
description = ""
authors = ["Bruno Murino"]
readme = "README.md"
packages = [ { include = "adc", from = "src" }]
[tool.poetry.dependencies]
python = ">=3.9,<4.0"
pyarrow = "^12.0.1"
attrs = "^23.1.0"
[tool.poetry.group.dev.dependencies]
black = "^23.3.0"
pytest = "^7.3.2"
coverage = "^7.2.7"
pyright = "^1.1.315"
poethepoet = "^0.20.0"
mkdocs-material = "^9.1.17"
mike = "^1.1.2"
mkdocs-gen-files = "^0.5.0"
mkdocs-literate-nav = "^0.6.0"
mkdocs-section-index = "^0.3.5"
mkdocstrings-python = "^1.1.2"
[tool.pytest.ini_options]
pythonpath = [
"src",
]
testpaths = [
"tests",
"src",
]
addopts = "--doctest-modules"
[tool.coverage.run]
omit = ["*/tests/*"]
[tool.coverage.report]
show_missing = true
[tool.poe.tasks]
test = "coverage run -m pytest -vv"
lint-fix = "black ."
coverage = "coverage lcov"
coverage_html = 'coverage html'
docs = "mkdocs build"
[tool.pyright]
include = ["src"]
typeCheckingMode = 'basic'
reportMissingImports = true
reportMissingTypeStubs = false