-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
58 lines (51 loc) · 1.16 KB
/
pyproject.toml
File metadata and controls
58 lines (51 loc) · 1.16 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
[project]
name = "slackbotbuilder"
version = "1.0.0"
description = "AI Slack Bot Builder with FastAPI"
authors = [
{name = "Your Name", email = "your.email@example.com"}
]
dependencies = [
"fastapi>=0.104.0",
"uvicorn[standard]>=0.24.0",
"PyGithub>=1.59.0",
"psycopg2-binary>=2.9.0",
"python-dotenv>=1.0.0",
"requests>=2.31.0",
"PyYAML>=6.0.1",
"openai==1.97.0",
"tiktoken>=0.7.0",
"slack-sdk>=3.36.0",
"markdown-to-mrkdwn>=0.2.0",
"drdroid-debug-toolkit",
]
requires-python = ">=3.8.1"
[project.optional-dependencies]
dev = [
"pytest>=7.4.0",
"pytest-asyncio>=0.21.0",
"black>=23.0.0",
"isort>=5.12.0",
"flake8>=6.0.0,<7.2.0",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
include = [
"*.py",
"*.yaml",
"*.json",
"scripts/*.py",
]
[tool.black]
line-length = 88
target-version = ['py38']
[tool.isort]
profile = "black"
line_length = 88
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]
[tool.uv.sources]
drdroid-debug-toolkit = { git = "https://github.com/DrDroidLab/drdroid-debug-toolkit.git", rev = "master" }