forked from janus-llm/janus-llm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
80 lines (70 loc) · 2.13 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
70
71
72
73
74
75
76
77
78
79
80
[tool.poetry]
name = "janus-llm"
version = "1.0.0"
description = "A transcoding library using LLMs."
authors = ["Michael Doyle <[email protected]>", "Chris Glasz <[email protected]>",
"Chris Tohline <[email protected]>", "William Macke <[email protected]>",
"Paul Kirk, <[email protected]>", "Lily Wong <[email protected]>",
"Michael Threet <[email protected]>", "Colin Diggs <[email protected]>",
"Pranay Jain <[email protected]>", "Chris Kempis <[email protected]>"]
license = "Apache 2.0"
repository = "https://github.com/janus-llm/janus-llm"
documentation = "https://janus-llm.github.io/janus-llm"
readme = "README.md"
packages = [
{ include = "janus/**/*.py" }
]
[tool.poetry.dependencies]
python = "^3.10"
rich = "^13.3.5"
openai = "^0.27.6"
tiktoken = "^0.4.0"
tree-sitter = "^0.20.1"
numpy = "^1.24.3"
gitpython = "^3.1.32"
langchain = "0.0.329"
text-generation = "^0.6.0"
transformers = "^4.31.0"
python-dotenv = "^1.0.0"
chromadb = "^0.4.14"
gpt4all = "^2.0.2"
typer = "^0.9.0"
langchain-community = "^0.0.16"
[tool.poetry.scripts]
janus = "janus.cli:app"
[tool.poetry.group.dev.dependencies]
black = "^23.3.0"
flake8 = "^6.0.0"
isort = "^5.12.0"
pre-commit = "^3.3.1"
pydocstyle = "^6.3.0"
bandit = "^1.7.5"
pytest = "^7.3.1"
[tool.poetry.group.docs.dependencies]
Sphinx = "^6.0.2"
sphinx-autoapi = "^3.0.0"
sphinx-rtd-theme = "^1.0.0"
myst-parser = "^1.0.0"
furo = "^2023.3.27"
sphinx-autobuild = "^2021.3.14"
sphinx-copybutton = "^0.5.2"
sphinxext-opengraph = "^0.9.1"
[tool.poetry.group.coverage.dependencies]
pytest-cov = "^4.1.0"
[tool.black]
line-length = 90
target-version = ['py310']
exclude = "decompile_script.py"
[tool.pydocstyle]
convention = "google"
# match '*.py' files that don't start with 'test_' or '__init'
match = '(?![test_|__init]).*\.py'
[tool.pytest.ini_options]
markers = [
"slow: marks tests as slow (select with '-m slow')",
"translate: marks tests as translation tests (select with '-m translate')",
"ghidra: marks tests as tests that use a Ghidra executable (select with '-m ghidra')",
]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"