forked from hafriedlander/stable-diffusion-grpcserver
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
39 lines (35 loc) · 954 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
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "stable-diffusion-grpcserver"
authors = [{name = "Hamish Friedlander", email = "[email protected]"}]
readme = "README.md"
license = {file = "LICENSE"}
classifiers = [
"License :: OSI Approved :: Apache Software License"
]
dynamic = ["version", "description"]
dependencies = [
"torch ~= 1.12.1",
"torchvision ~= 0.13.1",
"numpy ~= 1.23.3",
"opencv-python-headless ~= 4.6.0.66",
"scipy ~= 1.9.1",
"transformers ~= 4.22.1",
"diffusers ~= 0.6.0",
"protobuf ~= 3.20",
"grpcio ~= 1.48.1",
"wsgicors ~= 0.7.0",
"Twisted ~= 22.8.0",
"hupper ~= 1.10.3",
"watchdog ~= 2.1.9",
"python-dotenv ~= 0.21.0",
"service_identity ~= 21.1.0"
]
[project.urls]
Home = "https://github.com/hafriedlander/stable-diffusion-grpcserver"
[project.scripts]
sdgrpcserver = "sdgrpcserver.server:main"
[tool.flit.module]
name = "sdgrpcserver"