forked from Tanuki/tanuki.py
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
48 lines (42 loc) · 995 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
47
48
[build-system]
requires = ["setuptools>=45", "setuptools_scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
[tool.poetry]
name = "monkey-patch.py"
version = "0.0.5"
description = "The easiest way to build scalable LLM-powered applications, which gets cheaper and faster over time."
authors = ["Jack Hopkins <jack@paperplane.ai", "Mart Bakler <mart@paperplane.ai>"]
[tool.poetry.dependencies]
python = "^3.8"
appdirs= "1.4.4"
openai = "0.28.1"
numpy = "1.24.4"
python-dotenv= "1.0.0"
bitarray = "2.8.2"
pydantic = "2.4.2"
# Add your project dependencies here, for example:
# requests = "^2.25.1"
[tool.poetry.dev-dependencies]
pytest = "^6.2"
fastapi = "0.104.0"
[tool.black]
line-length = 88
include = '\.pyi?$'
exclude = '''
/(
\.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
)/
'''
[[tool.poetry.source]]
name = "monkey-patch.py"
url = "https://github.com/monkey-patch-sdk/monkey-patch.py"
secondary = true