-
-
Notifications
You must be signed in to change notification settings - Fork 53
/
Copy pathpyproject.toml
44 lines (38 loc) · 910 Bytes
/
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
[project]
name = "miui_updates_tracker"
version = "0.1.0"
description = "Automatically track Xiaomi Hyper OS and MIUI ROMs releases."
authors = [{ name = "yshalsager", email = "[email protected]" }]
license = { file = "LICENSE" }
requires-python = ">=3.12"
dependencies = [
"aiohttp[speedups]>=3.10.10",
"beautifulsoup4>=4.12.3",
"discord-py>=2.4.0",
"facebook-sdk>=3.1.0",
"feedgen>=1.0.0",
"humanize>=4.11.0",
"mysqlclient>=2.2.5",
"python-telegram-bot>=21.6",
"pyyaml>=6.0.2",
"requests>=2.32.3",
"sqlalchemy>=2.0.36",
"tweepy>=4.14.0",
]
[dependency-groups]
dev = [
"ruff>=0.7.1",
]
[tool.setuptools]
packages = ["miui_updates_tracker"]
[tool.uv]
package = true
[tool.ruff]
fix = true
src = ["miui_updates_tracker"]
target-version = "py312"
line-length = 100
[tool.ruff.format]
quote-style = "single"
indent-style = "space"
line-ending = "lf"