-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
113 lines (105 loc) · 2.89 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
[project]
name = "peakina"
version = "0.16.1"
authors = [
{name = "Toucan Toco", email = "dev@toucantoco.com"},
]
license = {text = "BSD-3-Clause"}
requires-python = "<4.0,>=3.10"
dependencies = [
"certifi",
"chardet<6,>=4",
"jq<2.0.0,>=1.2.1",
"pandas<3.0.0,>=1.5.3",
"paramiko<4.0.0,>=2.9.2",
"pydantic<3.0.0,>=2.4.2",
"python-slugify<9.0.0,>=5.0.2",
"s3fs<2025.0,>=2022.1",
"urllib3<3.0.0,>=1.26.8",
"xlrd<3.0.0,>=2.0.1",
"xmltodict<1,>=0.12.0",
"geopandas<2,>=1.0.0",
"pyarrow<20,>=11",
"openpyxl<4.0.0,>=3.1.2",
]
description = "pandas readers on steroids (remote files, glob patterns, cache, etc.)"
readme = "README.md"
classifiers = [
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Typing :: Typed",
]
[project.urls]
homepage = "https://github.com/ToucanToco/peakina"
repository = "https://github.com/ToucanToco/peakina"
documentation = "https://toucantoco.github.io/peakina"
[dependency-groups]
dev = [
"aiobotocore[boto3]<3.0.0,>=2.3.4",
"docker<8.0.0,>=7.1.0",
"mkdocs<2.0.0,>=1.5.3",
"mkdocs-material<10.0.0,>=9.5.18",
"mypy<2.0,>=1.10",
"pre-commit<5.0.0,>=3.7.1",
"pytest<9.0.0,>=8.2.2",
"pytest-cov<7,>=5",
"pytest-mock<4.0.0,>=3.14.0",
"pytest-rerunfailures<16,>=14",
"pytest-sugar<2,>=0.9.4",
"PyYAML<7.0,>=6.0",
"ruff<0.10.0,>=0.6.1",
"types-chardet<6.0.0,>=5.0.4",
"types-certifi<2022.0.0,>=2021.10.8",
"types-dataclasses<1,>=0.6.4",
"types-paramiko<4.0.0,>=3.4.0",
"types-python-slugify<9.0.0,>=8.0.2",
"types-PyYAML<7.0.0,>=6.0.12",
]
# FIXME: temporary workaround until https://github.com/pypa/setuptools/issues/4759 is fixed
[tool.setuptools]
license-files = []
[tool.uv]
package = true
[tool.ruff]
# Assume python 3.10
target-version = "py310"
line-length = 100
exclude = ["__init__.py", ".git", ".direnv"]
[tool.mypy]
python_version = "3.10"
plugins = "pydantic.mypy"
pretty = true
allow_redefinition = false
check_untyped_defs = true
disallow_any_generics = true
disallow_incomplete_defs = true
disallow_subclassing_any = true
disallow_untyped_calls = true
disallow_untyped_decorators = true
ignore_missing_imports = true
implicit_reexport = false
strict_optional = true
strict_equality = true
no_implicit_optional = true
warn_no_return = true
warn_unused_ignores = true
warn_redundant_casts = true
warn_unused_configs = true
warn_return_any = true
warn_unreachable = true
show_error_codes = true
show_column_numbers = true
show_error_context = true
[[tool.mypy.overrides]]
module = "peakina.*"
disallow_untyped_defs = true
[tool.coverage.report]
exclude_lines = [
"pragma: no cover",
"if TYPE_CHECKING:",
]