-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
54 lines (48 loc) · 1.42 KB
/
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
49
50
51
52
53
54
[tool.poetry]
name = "gh_release_install"
version = "0.11.2"
description = "CLI helper to install Github releases on your system."
readme = "README.md"
authors = ["Joola <[email protected]>"]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: System :: Installation/Setup",
"Topic :: System :: Software Distribution",
]
[tool.poetry.scripts]
gh-release-install = "gh_release_install.cli:run"
[tool.poetry.dependencies]
python = "^3.8"
requests = ">=2.32.3, <2.33"
[tool.poetry.group.dev.dependencies]
black = "^24.0.0"
isort = "^5.9.3"
mypy = "^1.0.0"
pylint = "^3.0.0"
pytest = "^8.0.0"
pytest-cov = "^5.0.0"
pytest-xdist = "^3.0.0"
requests-mock = "^1.9.3"
types-requests = "^2.31.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.pylint.messages_control]
disable = [
"missing-module-docstring",
"missing-function-docstring",
"missing-class-docstring",
]
[tool.isort]
profile = "black"
combine_as_imports = true
add_imports = ["from __future__ import annotations"]