-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
63 lines (54 loc) · 1.42 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
55
56
57
58
59
60
61
62
63
[project]
name = "live_illustrate"
version = "0.2.0"
description = "Live-ish illustration for your role-playing campaign"
readme = "README.md"
requires-python = ">=3.10"
license = {file = "LICENSE"}
authors = [
{name = "Eric Hennenfent", email = "[email protected]" }
]
keywords = ["ttrpg", "dnd", "GenAI", "LLM", "diffusion", "art", "illustration"]
# This field lists other packages that your project depends on to run.
# Any package you put here will be installed by pip when your project is
# installed, so they must be valid existing projects.
#
# For an analysis of this field vs pip's requirements files see:
# https://packaging.python.org/discussions/install-requires-vs-requirements/
dependencies = [
"discord.py",
"pyaudio",
"openai",
"openai-whisper",
"SpeechRecognition",
"soundfile",
"tiktoken",
"requests",
"flask",
"python-dotenv",
# Using --index-url https://download.pytorch.org/whl/cu118
"torch",
"torchvision",
"torchaudio",
]
[project.optional-dependencies] # Optional
dev = [
"black>=24.0,<25.0",
"isort",
"mypy",
"ruff",
"types-requests",
]
[project.scripts]
illustrate = "live_illustrate.__main__:main"
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[tool.black]
line-length = 120
[tool.ruff]
line-length = 120
[tool.isort]
profile = "black"
[tool.setuptools]
py-modules = ["live_illustrate"]