-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
48 lines (43 loc) · 1.27 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
[project]
name = "pinecone-async-client"
version = "0.0.1"
description = "Async client for Pinecone API"
authors = [
{ name = "Luca Mannini", email = "[email protected]" }
]
requires-python = ">=3.10"
readme = "README.md"
license = { text = "MIT" }
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Topic :: Software Development :: Libraries :: Python Modules",
"Framework :: AsyncIO",
]
dependencies = [
"httpx>=0.27.2",
"pydantic>=2.0.0",
"pytest-asyncio>=0.24.0",
"pytest-cov>=6.0.0",
]
keywords = ["pinecone", "vector database", "async", "client"]
[project.optional-dependencies]
dev = [
"pytest>=7.0.0",
"pytest-asyncio>=0.21.0",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.pytest.ini_options]
asyncio_mode = "strict"
asyncio_fixture_loop_scope = "function"
[tool.hatch.build.targets.wheel]
packages = ["src/pinecone_async"]
[project.urls]
"Homepage" = "https://github.com/aurelio-labs/pinecone-async-client"
"Bug Tracker" = "https://github.com/aurelio-labs/pinecone-async-client/issues"