-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (39 loc) · 814 Bytes
/
Copy pathpyproject.toml
File metadata and controls
45 lines (39 loc) · 814 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
[project]
name = "aurmod"
version = "0.1.0a3"
description = "Managing aur packages with git submodules"
readme = "README.md"
license = "GPL-3.0-or-later"
authors = [
{ name = "Agil Mammadov", email = "mammadovagil@proton.me" }
]
requires-python = ">=3.14"
dependencies = [
"click>=8.4.1",
"gitpython>=3.1.50",
]
[project.scripts]
aurmod = "aurmod:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[dependency-groups]
dev = [
"ruff>=0.15.16",
]
[tool.ruff.lint]
select = [
"E", # pycodestyle errors
"W", # pycodestyle warnings
"F", # pyflakes
"I", # isort
"D", # pydocstyle
"UP", # pyugrade
"RUF", # ruff
"TCH", # flake8-tpye-checking
]
[tool.ruff]
line-length = 80
[tool.ruff.format]
quote-style = "double"
indent-style = "space"