-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
48 lines (44 loc) · 1.55 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
[tool.poetry]
name = "fabricplus"
version = "1.0.1"
description = "A Python 3.8.10+ wrapper to add in SCP functionality for file transfer in Fabric."
authors = ["Courtney Caldwell <[email protected]>"]
maintainers = ["Courtney Caldwell <[email protected]>"]
repository = "https://github.com/prokopto-dev/fabric-plus"
homepage = "https://fabricplus.prokopto.dev/"
keywords = ["fabric", "scp", "file transfer", "python", "wrapper", "paramiko", "connection", "transfer"]
classifiers = [
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: System :: Networking",
"Topic :: System :: Systems Administration",
"Topic :: Utilities",
"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",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
license = "MIT"
readme = "README.md"
[tool.poetry.dependencies]
python = ">=3.8.1,<4.0"
scp = "^0.14.5"
fabric = "^3.2.2"
paramiko = "^3.4.0"
invoke = "^2.2.0"
[tool.poetry.group.dev.dependencies]
pytest = "^8.2.0"
poetry = "^1.8.3"
pytest-cov = "^5.0.0"
pytest-mock = "^3.14.0"
mypy = "^1.10.0"
flake8 = "^7.0.0"
black = "^24.4.2"
[tool.pytest.ini_options]
addopts = "-v --cov=fabricplus --cov-report=term-missing --cov-report=xml --cov-config=.coveragerc"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"