-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
63 lines (56 loc) · 1.59 KB
/
pyproject.toml
File metadata and controls
63 lines (56 loc) · 1.59 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
57
58
59
60
61
62
63
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "cosdata-sdk"
version = "0.2.4"
description = "A Python SDK for interacting with the Cosdata Vector Database"
readme = "README.md"
requires-python = ">=3.9"
license = "MIT"
keywords = ["vector", "database", "cosdata", "embeddings", "similarity-search"]
authors = [
{ name = "Cosdata", email = "contact@cosdata.com" }
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = [
"cosdata-fastembed",
"datasets>=3.1.0",
"dotenv>=0.9.9",
"numpy>=1.24.4",
"pandas>=2.0.3",
"psutil>=7.0.0",
"requests>=2.32.4",
]
[project.urls]
Homepage = "https://github.com/cosdata/cosdata-sdk-python"
Repository = "https://github.com/cosdata/cosdata-sdk-python.git"
Issues = "https://github.com/cosdata/cosdata-sdk-python/issues"
[tool.hatch.build]
only-packages = true
[tool.hatch.build.targets.wheel]
packages = ["src/cosdata"]
include = ["src/cosdata/**/*.py"]
[tool.hatch.build.targets.sdist]
include = [
"src/cosdata/**/*.py",
"README.md",
"LICENSE",
]
[dependency-groups]
dev = [
"build>=1.2.2.post1",
"twine>=6.1.0",
]
[tool.hatch.build.targets.wheel.shared-data]
"src/cosdata" = "cosdata_client"