forked from receptron/SlashGPT
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
64 lines (52 loc) · 1.25 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
[tool.black]
line-length = 150
[tool.isort]
line_length = 150
[tool.poetry]
name = "slashgpt"
version = "0.0.4"
description = ""
authors = ["snakajima <[email protected]>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/snakajima/SlashGPT"
packages = [
{ include = "slashgpt", from = "src" },
]
include = ["manifests/*", "manifests/*/*", "test/*", "resources/*/*", "data/*"]
[tool.poetry.dependencies]
python = "<3.13,>=3.9"
openai = "^0.28.0"
python-dotenv = "1.0.0"
pinecone-client = "^2.2.2"
google-generativeai = "^0.1.0"
termcolor = "^2.3.0"
bs4 = "^0.0.1"
tiktoken = "^0.4.0"
gtts = "^2.3.2"
ipython = "^8.15.0"
matplotlib = "^3.7.2"
numpy = "^1.25.0"
replicate = "^0.11.0"
pydantic = "1.10"
gql = "^3.4.1"
requests-toolbelt = "^1.0.0"
yfinance = "^0.2.28"
scipy= "^1.11.1"
codeboxapi="^0.0.9"
black = {extras = ["jupyter"], version = "^23.9.1"}
[tool.poetry.dependencies.pyobjc]
version = "^9.2"
markers = "sys_platform == 'darwin'"
[tool.poetry.group.dev.dependencies]
mypy = "^1.5.1"
isort = "^5.12.0"
flake8 = "^6.1.0"
yamllint = "^1.32.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
slashGPT = "slashgpt.cli:cli"
[tool.poetry.build]
script = "prebuild.py"