forked from chroma-core/chroma
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
58 lines (51 loc) · 1.48 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
51
52
53
54
55
56
57
58
[project]
name = "chromadb"
dynamic = ["version"]
authors = [
{ name="Jeff Huber", email="jeff@trychroma.com" },
{ name="Anton Troynikov", email="anton@trychroma.com" }
]
description = "Chroma."
readme = "README.md"
requires-python = ">=3.7"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
]
dependencies = [
'requests >= 2.28',
'pydantic>=1.9,<2.0',
'chroma-hnswlib==0.7.2',
'fastapi>=0.95.2, <0.100.0',
'uvicorn[standard] >= 0.18.3',
'numpy == 1.21.6; python_version < "3.8"',
'numpy >= 1.22.5; python_version >= "3.8"',
'posthog >= 2.4.0',
'typing_extensions >= 4.5.0',
'pulsar-client>=3.1.0',
'onnxruntime >= 1.14.1',
'tokenizers >= 0.13.2',
'pypika >= 0.48.9',
'tqdm >= 4.65.0',
'overrides >= 7.3.1',
'importlib-resources',
'graphlib_backport >= 1.0.3; python_version < "3.9"',
'bcrypt >= 4.0.1'
]
[tool.black]
line-length = 88
required-version = "23.3.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 = ["chromadb"]