-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
92 lines (82 loc) · 2.56 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
[tool.poetry]
name = "pandas-pyarrow"
version = "0.0.0"
description = "A library for switching pandas backend to pyarrow"
authors = ["DanielAvdar <66269169+DanielAvdar@users.noreply.github.com>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/DanielAvdar/pandas-pyarrow"
repository = "https://github.com/DanielAvdar/pandas-pyarrow"
documentation = "https://github.com/DanielAvdar/pandas-pyarrow"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Utilities",
]
keywords = [
"python",
"pandas",
"pyarrow",
"arrow",
"dataframe",
"bigquery",
"pandas-pyarrow",
"pandas-arrow",
]
packages = [{ include = "pandas_pyarrow", from = "." }]
[tool.poetry.dependencies]
python = ">=3.9,<4"
pandas = ">=2"
db-dtypes = { version = ">=1", optional = true }
pandas-gbq = { version = ">=0.15.0", optional = true }
pyarrow = ">=10.0.1"
[tool.poetry.dev-dependencies]
db-dtypes = ">=1"
pytest = ">=7.1.2"
hypothesis = ">=6.23.3"
pre-commit = ">=2.20.0"
pytest-cov = ">=4.0.0"
mypy = ">=0.991"
pytest-parametrization = ">=2022.2.1"
types-pytz = ">=2024.1.0.20240203"
pandas-stubs = ">=2.2.1.240316"
ruff = ">=0.3.1"
[tool.poetry.extras]
db-dtypes = ["db-dtypes"]
bigquery = ["pandas-gbq"]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.ruff]
line-length = 120
include = ["pyproject.toml", "tests/**", "pandas_pyarrow/**", ]
[tool.ruff.lint]
select = ["F", "B", "I", "F", "W", "E", "A", "N"]
fixable = ["ALL"]
[tool.ruff.lint.isort]
combine-as-imports = true
section-order = ["future", "standard-library", "first-party", "local-folder", "third-party", ]
[tool.mypy]
python_version = "3.11"
disallow_untyped_defs = true
check_untyped_defs = true
warn_redundant_casts = true
warn_unused_ignores = true
strict_optional = false
[[tool.mypy.overrides]]
module = "tests.*"
ignore_errors = true