-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
54 lines (48 loc) · 1.22 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
[tool.poetry]
name = "bespokelabs-curator"
version = "0.1.12"
description = "Bespoke Labs Curator"
authors = ["Bespoke Labs <[email protected]>"]
readme = "README.md"
packages = [
{include = "bespokelabs", from = "src"},
]
include = [
"src/bespokelabs/curator/viewer/static/**/*"
]
exclude = [
"src/bespokelabs/curator/viewer/static/.next/cache/**/*"
]
license = "Apache-2.0"
homepage = "https://github.com/bespokelabsai/curator"
repository = "https://github.com/bespokelabsai/curator"
keywords = ["ai", "curator", "bespoke"]
[tool.poetry.dependencies]
python = "^3.10"
pydantic = ">=2.9.2"
datasets = "^3.0.2"
instructor = "^1.6.3"
pytest = "^8.3.3"
pytest-asyncio = "^0.24.0"
pandas = "2.2.2"
xxhash = "^3.5.0"
tqdm = "^4.67.0"
matplotlib = "^3.9.2"
nest-asyncio = "^1.6.0"
rich = "^13.7.0"
litellm = "^1.52.11"
isort = "^5.13.2"
tiktoken = ">=0.7.0,<0.8.0"
aiofiles = ">=22.0,<24.0"
[tool.poetry.group.dev.dependencies]
black = "^24.2.0"
twine = "^5.0.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
curator-viewer = "bespokelabs.curator.viewer.__main__:main"
[tool.black]
line-length = 100
[tool.pytest.ini_options]
asyncio_default_fixture_loop_scope = "function"