-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
80 lines (71 loc) · 1.93 KB
/
pyproject.toml
File metadata and controls
80 lines (71 loc) · 1.93 KB
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project.urls]
"Homepage" = "https://github.com/cmsj/dreambot"
"Bug Tracker" = "https://github.com/cmsj/dreambot/issues"
[project]
name = "dreambot"
version = "1.0"
authors = [
{ name="Chris Jones", email="cmsj@tenshu.net" },
]
description = "A framework for running chat bot services"
readme = "README.md"
requires-python = ">=3.11"
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Communications :: Chat",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = [
"openai",
"nats-py",
"python-socketio[client]",
"aiohttp",
"requests",
"discord.py",
"slack_bolt",
"Pillow"
]
[project.optional-dependencies]
test = [
"pytest==7.2.2",
"pytest-asyncio==0.21.0",
"pytest-mock==3.10.0",
"pytest-cov==4.0.0"
]
dev = [
"pylint",
"pydocstyle",
"hatch"
]
[project.scripts]
dreambot_frontend_irc = "dreambot.dreambot_frontend_irc:main"
dreambot_frontend_discord = "dreambot.dreambot_frontend_discord:main"
dreambot_frontend_slack = "dreambot.dreambot_frontend_slack:main"
dreambot_backend_gpt = "dreambot.dreambot_backend_gpt:main"
dreambot_backend_a1111 = "dreambot.dreambot_backend_a1111:main"
dreambot_backend_invokeai = "dreambot.dreambot_backend_invokeai:main"
dreambot_backend_commands = "dreambot.dreambot_backend_commands:main"
dreambot_backend_comfyui = "dreambot.dreambot_backend_comfyui:main"
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "-ra -q"
testpaths = [
"tests"
]
pythonpath = [
"src"
]
[tool.black]
line-length = 120
[tool.pylint.format]
max-line-length = 120
[tool.pylint."MESSAGES CONTROL"]
disable = "broad-exception-caught, line-too-long, fixme"