-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathpyproject.toml
54 lines (47 loc) · 1.12 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
[tool.poetry]
name = "codesherpa"
version = "0.1.0"
description = "Codesherpa is a code-interpreter API that allows you to run code in a Docker container."
authors = ["Greg Garcia <greg@garcia.casa>"]
license = "MIT"
readme = "README.md"
packages = [
{ include = "localserver", from = "." }
]
[tool.poetry.dependencies]
python = "^3.10, <3.12"
fastapi = "^0.95.1"
uvicorn = "^0.22.0"
pydantic = "^1.10.7"
matplotlib = "^3.7.1"
seaborn = "^0.12.2"
pandas = "^2.0.1"
passlib = "^1.7.4"
python-jose = "^3.3.0"
slowapi = "^0.1.8"
loguru = "^0.7.0"
google-auth = "^2.18.0"
httpx = "^0.24.0"
requests = "^2.30.0"
jinja2 = "^3.1.2"
python-multipart = "^0.0.6"
numpy = "^1.24.3"
scipy = "^1.10.1"
openpyxl = "^3.1.2"
scikit-learn = "^1.2.2"
[tool.poetry.group.dev.dependencies]
pytest = "^7.2.1"
pytest-cov = "^4.0.0"
pytest-asyncio = "^0.20.3"
loguru = "^0.7.0"
flake8 = "^4.0.1"
google-auth = "^2.18.0"
requests = "^2.30.0"
[tool.pytest.ini_options]
testpaths = ["tests"]
[tool.poetry.scripts]
start = "localserver.main:start"
dev = "localserver.main:dev"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"