-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
30 lines (24 loc) · 761 Bytes
/
Copy pathpyproject.toml
File metadata and controls
30 lines (24 loc) · 761 Bytes
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
[project]
name = "leetbot"
version = "1.0.0"
description = "A Slack bot that posts daily LeetCode questions to a channel."
readme = "README.md"
requires-python = ">=3.12"
dependencies = ["boto3>=1.43.92", "slack-sdk>=3.44.1"]
# The Lambda source in ./leetbot uses flat, top-level imports (utils.config,
# leetcode.problem, ...) and is packaged by AWS SAM from CodeUri: ./leetbot/,
# so this project is a dependency manifest only, not an installable package.
[tool.uv]
package = false
[dependency-groups]
dev = ["ruff>=0.16.7", "ty>=0.0.80"]
[tool.ruff]
line-length = 120
src = ["leetbot"]
extend-exclude = [".aws-sam"]
[tool.ruff.lint]
select = ["E", "W", "F", "I", "B", "UP"]
[tool.ty.environment]
root = ["leetbot"]
[tool.ty.src]
exclude = [".aws-sam"]