forked from hackersandslackers/paramiko-tutorial
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
41 lines (36 loc) · 1.08 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
[tool.poetry]
name = "Paramiko SSH & SCP Tutorial"
version = "0.1.0"
description = "Automate tasks on a remote host with Python libraries Paramiko & SCP. Write scripts to SSH into hosts, execute tasks, transfer files, etc."
authors = ["Todd Birchard <[email protected]>"]
maintainers = ["Todd Birchard <[email protected]>"]
license = "MIT"
readme = "README.md"
homepage = "https://hackersandslackers.com/automate-ssh-scp-python-paramiko/"
repository = "https://github.com/hackersandslackers/paramiko-tutorial/"
documentation = "https://hackersandslackers.com/automate-ssh-scp-python-paramiko/"
keywords = [
"Paramiko",
"SSH",
"SCP",
"DevOps",
"Tutorial"
]
[tool.poetry.dependencies]
python = "^3.8"
paramiko = "*"
scp = "*"
loguru = "*"
python-dotenv = "*"
[tool.poetry.dev-dependencies]
pytest = "*"
isort = "^5.7.0"
black = "^20.8b1"
flake8 = "^3.9.0"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"
[tool.poetry.scripts]
run = "main:main"
[tool.poetry.urls]
issues = "https://github.com/hackersandslackers/paramiko-tutorial/issues"