forked from chroma-core/chroma
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
50 lines (43 loc) · 1.3 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
49
50
[project]
name = "chroma"
dynamic = ["version"]
authors = [
{ name="Jeff Huber", email="[email protected]" },
{ name="Anton Troynikov", email="[email protected]" }
]
description = "Chroma."
readme = "README.md"
requires-python = ">=3.7"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache-2.0",
"Operating System :: OS Independent",
]
dependencies = [
'pyarrow ~= 9.0',
'pandas ~= 1.3',
'requests ~= 2.28',
'pydantic ~= 1.9',
'hdbscan ~= 0.8',
'hnswlib @ git+https://oauth2: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@github.com/chroma-core/hnswlib.git',
'duckdb ~= 0.5',
'posthog ~= 2.1',
'uuid ~= 1.30',
'clickhouse_driver ~= 0.2'
]
[tool.black]
line-length = 100
required-version = "22.10.0" # Black will refuse to run if it's not this version.
target-version = ['py36', 'py37', 'py38', 'py39', 'py310']
[tool.pytest.ini_options]
pythonpath = ["."]
[project.urls]
"Homepage" = "https://github.com/chroma-core/chroma"
"Bug Tracker" = "https://github.com/chroma-core/chroma/issues"
[build-system]
requires = ["setuptools>=61.0", "setuptools_scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
local_scheme="no-local-version"
[tool.setuptools]
packages = ["chroma"]