-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
49 lines (40 loc) · 940 Bytes
/
Copy pathpyproject.toml
File metadata and controls
49 lines (40 loc) · 940 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
46
47
48
49
[build-system]
requires = ["setuptools>=69"]
build-backend = "setuptools.build_meta"
[project]
name = "dotfileswitcher"
version = "0.1.0"
description = "Install, update, and switch multiple Hyprland dotfile distributions side by side."
readme = "README.md"
requires-python = ">=3.11"
license = "MIT"
authors = [
{ name = "Emilian" }
]
dependencies = []
[project.optional-dependencies]
dev = [
"build>=1.2",
"installer>=0.7",
"mypy>=1.14",
"pytest>=8",
"ruff>=0.8",
"twine>=5.0",
]
[project.scripts]
dotfileswitcher = "dotfileswitcher.cli:main"
[tool.setuptools]
package-dir = { "" = "src" }
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
dotfileswitcher = ["py.typed", "profiles/*.toml"]
[tool.ruff]
line-length = 100
target-version = "py311"
[tool.ruff.lint]
select = ["E", "F", "I", "UP", "B", "SIM"]
[tool.mypy]
python_version = "3.11"
strict = true
files = ["src/dotfileswitcher"]