-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathpyproject.toml
More file actions
55 lines (51 loc) · 1.23 KB
/
pyproject.toml
File metadata and controls
55 lines (51 loc) · 1.23 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
[project]
# This top-level project only manages the dev environment.
# The real arro3-* libraries are defined in each `arro3-*` directory.
name = "dev-environment"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.9"
dependencies = []
[tool.uv]
dev-dependencies = [
"boto3>=1.35.38",
"geoarrow-types>=0.3.0",
"ipykernel>=6.29.5",
"maturin>=1.9.4",
"pandas-stubs",
"pandas>=2.2.3",
"pip>=24.2",
"pyarrow>=21.0.0",
"pytest>=8.3.3",
"pytest-freethreaded>=0.1.0;python_version>='3.13'",
"pre-commit>=4.3.0",
"ruff>=0.15.2",
]
[tool.ruff.lint]
select = [
# Pyflakes
"F",
# Pycodestyle
# "E",
"W",
# isort
"I",
]
[tool.ruff.lint.extend-per-file-ignores]
"__init__.py" = [
"F401", # Allow unused imports in __init__.py files
"F403", # unable to detect undefined names
]
[dependency-groups]
# This is separate from dev deps because mkdocs-material[imaging] doesn't
# support Python 3.13 free-threaded
docs = [
"black>=24.10.0",
"griffe-inherited-docstrings>=1.0.1",
"mike>=2.1.3",
"mkdocs-material[imaging]>=9.6.7",
"mkdocs-redirects>=1.2.2",
"mkdocs>=1.6.1",
"mkdocstrings[python]>=0.28.3",
]