-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
69 lines (57 loc) · 1.38 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
59
60
61
62
63
64
65
66
67
68
69
[project]
name = "vectorboard"
version = "0.0.1"
description = "Hyperparameter optimisation for your LLM Emebddings."
keywords = ["hyperparameter", "optimisation", "embeddings", "machine learning", "vectorboard", "langchain", "llama_index", "llm", "finetune"]
authors = [
{ name="Hamed Mohammadpour", email="hamed@vectorboard.ai" },
]
readme = "README.md"
license = {file = "LICENSE"}
requires-python = ">=3.8, <4.0"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
]
[project.urls]
"Homepage" = "https://vectorboard.ai"
"Bug Tracker" = "https://github.com/vectorboard/"
[tool.black]
line-length = 90
target-version = ["py311"]
include = '\.pyi?$'
exclude = '''
(
/(
\.direnv
| \.eggs
| \.git
| \.tox
| \.venv
| _build
| build
| dist
| venv
)/
)
'''
[tool.poetry]
name = "vectorboard"
packages = [
{ include = "vectorboard", from = "src" },
]
version = "0.0.1"
description = "Hyperparameter optimisation for your LLM Emebddings."
authors = ["Hamed Mohammadpour <HamedMP@users.noreply.github.com>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.10"
pandas = "^1.3"
gradio = "^3.4"
matplotlib = "^3.4"
langchain = "^0.0.300"
rich = "^13.5.3"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"