-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (38 loc) · 946 Bytes
/
pyproject.toml
File metadata and controls
43 lines (38 loc) · 946 Bytes
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
[tool.poetry]
name = "stable-diffusion-api"
version = "0.1.0"
description = ""
authors = ["Rafael Irgolic <hello@irgolic.com>"]
license = "GNU Affero General Public License"
readme = "README.md"
packages = [{include = "stable_diffusion_api"}]
[tool.poetry.dependencies]
python = "^3.10"
python-jose = "^3.3.0"
PyYAML = "^6.0"
requests = "^2.28.1"
requests-toolbelt = "^0.10.0"
fastapi = "^0.85.0"
typing-extensions = "^4.4.0"
passlib = "^1.7.4"
redis = "^4.3.4"
aioredis = "^2.0.1"
python-multipart = "^0.0.5"
uvicorn = "^0.18.3"
diffusers = "0.6"
pillow = "^9.2.0"
torch = "^1.12.1"
transformers = "^4.23.1"
scipy = "^1.9.2"
bcrypt = "^4.0.1"
[tool.poetry.group.dev.dependencies]
pyright = "^1.1.274"
[tool.poetry.group.test.dependencies]
pytest = "^7.1.3"
pytest-asyncio = "^0.19.0"
websockets = "^10.3"
httpx = "^0.23.0"
asgi-lifespan = ">=1.0.0,<2.0.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"