-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpyproject.toml
More file actions
56 lines (49 loc) · 1.19 KB
/
pyproject.toml
File metadata and controls
56 lines (49 loc) · 1.19 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
[project]
name = "pinecone-datasets"
version = "1.0.2"
description = "Load datasets to explore Pinecone"
authors = [
{name = "Pinecone Support", email = "support@pinecone.io"},
]
maintainers = [
{name = "Amnon Catav", email = "amnon@pinecone.io"},
{name = "Roy Miara", email = "miararoy@gmail.com"},
{name = "Jen Hamon", email = "jhamon@pinecone.io"},
]
readme = "README.md"
requires-python = ">=3.9,<3.14"
dependencies = [
"fsspec>=2025.2.0",
"gcsfs>=2025.2.0",
"s3fs>=2025.2.0",
"pydantic>=2.0.0",
"pandas>=2.0.0",
"pyarrow>=18.0.0",
"tenacity>=9.0.0",
]
[project.optional-dependencies]
dev = [
"ipykernel>=6.21.1",
"ruff>=0.8.0",
"pytest-cov>=4.0.0",
"mypy>=1.0.1",
"pytest>=7.2.2",
"pytest-html>=3.2.0",
"pdoc>=13.0.0",
"toml>=0.10.2",
"pytest-xdist>=3.3.1",
"tuna>=0.5.11",
"tqdm>=4.67.1",
]
[tool.ruff]
line-length = 88
target-version = "py39"
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
[tool.ruff.lint]
select = ["E", "F", "I", "UP"]
ignore = ["E501"] # Ignore line-too-long (black doesn't enforce this in docstrings)
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"