-
Notifications
You must be signed in to change notification settings - Fork 49
/
Copy pathpyproject.toml
48 lines (41 loc) · 988 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
45
46
47
48
[project]
name = "rofimoji"
version = "6.5.0"
description = "Simple character picker using rofi"
authors = [
{ name = "Fabian Winter", email = "[email protected]" },
]
license = { text = "MIT" }
readme = "README.md"
requires-python = ">=3.9"
dependencies = [
"ConfigArgParse>=1.3,<2.0",
]
[project.urls]
homepage = "https://github.com/fdw/rofimoji"
repository = "https://github.com/fdw/rofimoji"
[project.scripts]
rofimoji = "picker.__main__:main"
[tool.hatch.build]
include = [
"src/picker/data/*.csv",
"src/picker/docs/rofimoji.1",
"src/picker/contrib/*",
]
packages = ['src/picker']
[dependency-groups]
dev = [
"beautifulsoup4>=4.12.3,<5.0",
"lxml>=5.3.0,<6.0",
"tqdm>=4.67.0,<5.0",
"aiohttp>=3.11.7,<4.0",
"aiofiles>=24.1.0,<25.0",
"ruff>=0.4.0",
]
[build-system]
requires = ["hatchling>=1.18"]
build-backend = "hatchling.build"
[tool.ruff]
line-length = 120
[tool.ruff.lint]
select = ["E4", "E7", "E9", "F", "I"]