-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
53 lines (44 loc) · 1.34 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
[tool.poetry]
name = "vector-database"
version = "0.1.0"
description = "Repositório que introduz os conceitos básicos de Vector Databases utilizando exemplos simples com o banco de dados baseado em arquivos ChromaDB."
authors = ["Richard Wallan <3am.richardwallan@gmail.com>"]
license = "MIT"
readme = "README.md"
classifiers = [
"Natural Language :: Portuguese (Brazilian)",
"Programming Language :: Python :: 3.11",
"License :: OSI Approved :: MIT License",
"Topic :: Education",
]
[tool.poetry.urls]
"Documentação" = "https://github.com/RWallan/vector-database/blob/main/README.md"
"Código" = "https://github.com/RWallan/vector-database"
"Bug Tracker" = "https://github.com/RWallan/vector-database/issues"
[tool.poetry.dependencies]
python = "3.11.*"
ipykernel = "^6.26.0"
pandas = "^2.1.2"
onnxruntime = "1.16.1"
chromadb = "0.4.15"
pyarrow = "^14.0.1"
fastparquet = "^2023.10.1"
[tool.poetry.group.dev.dependencies]
ruff = "^0.1.5"
black = {extras = ["jupyter"], version = "^23.11.0"}
isort = "^5.12.0"
taskipy = "^1.12.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 79
[tool.isort]
line_length = 79
profile = "black"
[tool.ruff]
line-length=79
exclude = [".venv"]
[tool.taskipy.tasks]
lint = "ruff . && black --check . && isort . --diff"
format = "black . && isort ."