-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
55 lines (47 loc) · 1.12 KB
/
pyproject.toml
File metadata and controls
55 lines (47 loc) · 1.12 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
[project]
name = "smib"
description = "The SoMakeIt Bot"
requires-python = ">=3.14.3,<4.0.0"
authors = [
{ name = "Sam Cork", email = "sam57719@gmail.com" }
]
license = "MIT"
license-files = { type = "Apache-2.0", path = "LICENSE" }
keywords = ["slack", "bot", "python"]
readme = "README.md"
dependencies = [
"slack-bolt>=1.28.0,<2.0.0",
"uvicorn==0.44.0",
"aiohttp (>=3.13.5,<4.0.0)",
"makefun>=1.16.0,<2.0.0",
"apscheduler (>=3.11.2,<4.0.0)",
"httpx (>=0.28.1,<0.29.0)",
"humanize>=4.15.0",
"pytz>=2025.2",
"beanie>=2.1.0",
"fastapi>=0.135.3",
"pydantic-settings>=2.13.1",
"jinja2>=3.1.6",
"websockets>=16.0",
"packaging>=26.0",
]
dynamic = ["version"]
[tool.smib]
display_name = "S.M.I.B."
[build-system]
requires = [
"hatchling (>=1.29.0,<2.0.0)",
"hatch-vcs (>=0.5.0,<1.0.0)"
]
build-backend = "hatchling.build"
[dependency-groups]
dev = [
"pre-commit>=4.5.1",
]
[tool.hatch.version]
source = "vcs"
[tool.hatch.version.raw-options]
version_scheme = "no-guess-dev"
local_scheme = "node-and-timestamp"
[tool.hatch.build.targets.wheel]
packages = ["src/smib"]