-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
44 lines (39 loc) · 1.24 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "cosdata-client"
version = "0.1.4"
description = "A Python SDK for interacting with the Cosdata Vector Database"
readme = "README.md"
requires-python = ">=3.8"
license = "MIT"
keywords = ["vector", "database", "cosdata", "embeddings", "similarity-search"]
authors = [
]
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",
]
[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"]
[tool.hatch.build.targets.sdist]
include = [
"src/cosdata/**/*.py",
"README.md",
"LICENSE",
]