-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
87 lines (74 loc) · 2.1 KB
/
pyproject.toml
File metadata and controls
87 lines (74 loc) · 2.1 KB
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
[project]
name = "install-release"
version = "0.7.3"
readme = "README.md"
description = "Simple package manager to easily install, update and manage any tool directly from github or gitlab releases"
authors = [
{ name = "Rishang", email = "rishangbhavsarcs@gmail.com" }
]
classifiers = [
"Intended Audience :: Information Technology",
"Intended Audience :: System Administrators",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Build Tools",
"Topic :: Software Development",
"Typing :: Typed",
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
]
requires-python = ">=3.10"
dependencies = [
"python-magic>=0.4.27",
"pyyaml>=6.0.3",
"requests>=2.32.5",
"rich>=14.1.0",
"typer>=0.17.3",
"zstandard>=0.24.0",
]
[project.urls]
Homepage = "https://github.com/Rishang/install-release"
Documentation = "https://github.com/Rishang/install-release"
Repository = "https://github.com/Rishang/install-release"
Issues = "https://github.com/Rishang/install-release/issues"
Changelog = "https://github.com/Rishang/install-release/release"
[dependency-groups]
dev = [
"mypy>=1.17.1",
"nuitka>=2.7.13",
"pytest>=8.4.2",
"pre-commit>=4.3.0",
"ruff>=0.12.12",
"setuptools",
"types-requests>=2.32.4.20250809",
]
[build-system]
requires = ["setuptools>=42"]
build-backend = "setuptools.build_meta"
[tool.uv]
package = true
[tool.setuptools.packages.find]
include = ["InstallRelease*"]
[tool.ruff.lint]
select = [
"E", # pycodestyle errors
"W", # pycodestyle warnings
"F", # pyflakes
"I", # isort
"UP", # pyupgrade
"B", # flake8-bugbear
"C4", # flake8-comprehensions
"RUF", # ruff-specific rules
]
ignore = [
"E501", # line too long (handled by formatter)
]
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
[project.scripts]
install-release = "InstallRelease.cli:app"
ir = "InstallRelease.cli:app"