-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
42 lines (35 loc) · 928 Bytes
/
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
[tool.poetry]
name = "srctag"
version = "0.5.1"
description = "Tag source files with real-world stories."
authors = ["williamfzc <[email protected]>"]
license = "Apache-2.0"
readme = "README.md"
packages = [
{ include = "srctag" }
]
[tool.poetry.group.dev.dependencies]
pytest = "^7.4.3"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.dependencies]
python = "^3.8"
gitpython = "*"
chromadb = "0.4.14"
pydantic-settings = "*"
pydantic = "*"
tqdm = "*"
loguru = "^0.7.2"
pandas = "^2.0.3"
click = "^8.1.3"
networkx = "^3.1"
matplotlib = "*"
pydot = "^1.4.2"
# actually srctag still requires `sentence_transformers` here
# but pytorch is a large dep which I don't want to manage it here
sentence-transformers = { version = "^2.2.2", optional = true }
[tool.poetry.extras]
embedding = ["sentence-transformers"]
[tool.poetry.scripts]
srctag = 'srctag.cli:cli'