-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
41 lines (36 loc) · 990 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
[virtualenvs]
in-project = true
[tool.poetry]
name = "install-release"
version = "0.4.4"
readme = "README.md"
description = "Simple package manager to easily install, update and manage any command-line(CLI) tool directly from github releases"
authors = ["Rishang <rishangbhavsarcs@gmail.com>"]
packages = [
{ include = "InstallRelease" }
]
homepage = "https://github.com/Rishang/install-release"
classifiers = [
"Topic :: Software Development :: Build Tools",
"Topic :: Software Development :: Libraries :: Python Modules"
]
[tool.poetry.dependencies]
python = ">=3.8,<4.0"
rich = "*"
requests = "*"
python-magic = "^0.4.27"
typer = ">=0.9.0,<0.14.0"
[tool.poetry.scripts]
install-release = "InstallRelease.cli:app"
ir = "InstallRelease.cli:app"
[tool.poetry.dev-dependencies]
pytest = "^7.2"
mypy = "*"
black = "*"
types-requests = "*"
toml = "*"
types-toml = "*"
types-setuptools = "*"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"