-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
97 lines (82 loc) · 2.28 KB
/
Copy pathpyproject.toml
File metadata and controls
97 lines (82 loc) · 2.28 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
87
88
89
90
91
92
93
94
95
96
97
[build-system]
requires = ["setuptools>=80.9.0", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools.dynamic]
version = {attr = "bitssh._version.__version__"}
[tool.setuptools.packages.find]
where = ["src"]
[project]
name = "bitssh"
dynamic = ["version"]
description = "A new and modern SSH connector written in Python."
readme = "README.md"
license = "MIT"
requires-python = ">=3.10"
authors = [
{ name = "Kanishk Pachauri", email = "itskanishkp.py@gmail.com" },
]
classifiers = [
"Intended Audience :: Developers",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Environment :: Console",
"Topic :: System :: Shells",
"Topic :: Terminals",
]
keywords = ["bitssh", "sshmanager", "commandline", "cli", "ssh"]
dependencies = [
"rich>=14.0.0",
"InquirerPy>=0.3.4",
]
[project.optional-dependencies]
dev = [
"black",
"isort",
"pytest",
"pytest-cov",
"ruff",
"pre-commit",
"bumpver",
]
[project.urls]
Homepage = "https://github.com/Mr-Sunglasses/bitssh"
Documentation = "https://github.com/Mr-Sunglasses/bitssh/blob/master/README.md"
Repository = "https://github.com/Mr-Sunglasses/bitssh"
Issues = "https://github.com/Mr-Sunglasses/bitssh/issues"
Changelog = "https://github.com/Mr-Sunglasses/bitssh/releases"
[project.scripts]
bitssh = "bitssh.__main__:main"
[tool.bumpver]
current_version = "3.7.1"
version_pattern = "MAJOR.MINOR.PATCH"
commit_message = "Bump version {old_version} -> {new_version}"
commit = true
tag = true
push = false
[tool.bumpver.file_patterns]
"src/bitssh/_version.py" = ['__version__ = "{version}"']
"pyproject.toml" = ['current_version = "{version}"']
[tool.pytest.ini_options]
pythonpath = ["src"]
addopts = "--cov=src/bitssh --cov-report=term-missing"
[tool.coverage.run]
source = ["src/bitssh"]
[tool.coverage.report]
show_missing = true
fail_under = 80
[tool.ruff]
target-version = "py310"
line-length = 100
[tool.ruff.lint]
select = ["E", "F", "W", "I"]
[tool.black]
line-length = 100
target-version = ["py310"]
[tool.isort]
profile = "black"
line_length = 100