-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
59 lines (50 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
54
55
56
57
58
59
[tool.poetry]
name = "vanilla-steel"
version = "0.1.0"
description = "A tool to collate all resources into a single dataset"
authors = ["praveer kumar <[email protected]>"]
license = "MIT"
readme = "README.md"
packages = [
{ include = "vanilla_steel", from = "." },
]
[tool.poetry.dependencies]
python = "^3.12"
pandas = "^2.2.2"
requests = "^2.32.3"
openpyxl = "^3.1.5"
sqlalchemy = "^2.0.32"
pydantic = "^2.8.2"
pydantic-settings = "^2.4.0"
psycopg2 = "^2.9.9"
tqdm = "^4.66.5"
watchdog = "^4.0.2"
streamlit = "^1.37.1"
altair = "^5.4.0"
pyarrow = "^17.0.0"
pyyaml = "^6.0.2"
click = "^8.1.7"
rich = "^13.8.0"
torch = {version = "^2.4.1+cu124", source = "pytorch"}
numpy = "^1.26.3"
ipykernel = "^6.29.5"
[tool.poetry.group.dev.dependencies]
ipykernel = "^6.29.5"
[tool.poetry.group.docs.dependencies]
recommonmark = "^0.7.1"
watchdog = "^4.0.2"
sphinxcontrib-plantuml = "^0.30"
furo = "^2024.8.6"
[tool.poetry.scripts]
version = "vanilla_steel.version:show_version"
dashboard = "vanilla_steel.dashboard.__main__:dashboard"
docs = "vanilla_steel.docs.__main__:docs"
categorize = "vanilla_steel.llm.__main__:categorize"
load = "vanilla_steel.core.__main__:load"
[[tool.poetry.source]]
name = "pytorch"
url = "https://download.pytorch.org/whl/cu124"
priority = 'explicit'
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"