-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpyproject.toml
46 lines (39 loc) · 971 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
43
44
45
46
[tool.poetry]
name = "ghost"
version = "0.1.0"
description = "Create an AI replica of yourself that is accessible via SMS."
authors = []
license = "MIT"
readme = "README.md"
repository = "https://github.com/ccurme/ghost"
[tool.poetry.dependencies]
python = ">= 3.9, < 4.0"
ipython = "^8.8.0"
langchain = ">= 0.0.134, < 1.0"
tiktoken = ">= 0.3.0, < 1"
faiss-cpu = ">= 1.7.3, < 2"
openai = ">= 0.27.0"
flask = ">= 2.2.3,< 3.0"
twilio = ">= 8.0.0, < 9.0"
PyJWT = " >= 2.6.0"
flask-jwt-extended = " >= 4, < 5"
pandas = "^1"
numpy = "^1"
[tool.poetry.group.test.dependencies]
pytest = "^7.2.0"
pytest-cov = "^4.0.0"
[tool.poetry.group.lint.dependencies]
black = "^22.10.0"
isort = "^5.10.1"
flake8 = "^6.0.0"
[tool.poetry.group.typing.dependencies]
mypy = "^0.991"
[tool.poetry.group.dev.dependencies]
jupyter = "^1.0.0"
[tool.isort]
profile = "black"
src_paths = ["ghost"]
[tool.mypy]
ignore_missing_imports = "True"
disallow_untyped_defs = "True"
exclude = ["tests"]