-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
43 lines (38 loc) · 1.02 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
[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "send_ip"
version = "0.0.10"
description = "python package to send its own IP to another machine through ssh"
authors = [{ name = "Matias Andina", email = "[email protected]" }]
license = {text = "MIT License"}
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
readme = "README.md"
dependencies = [
"PyYAML >= 5.3.1",
"paramiko >= 2.6.0",
"python-crontab >= 0.23.0",
"py_console",
"scp"
]
[project.urls]
Homepage = "https://github.com/matiasandina/send_ip"
[project.optional-dependencies]
dev = [
"twine",
"check-manifest",
"PyYAML==5.3.1",
"paramiko==2.6.0"
]
[tool.setuptools]
package-dir = {"" = "src"}
[tool.setuptools.packages.find]
where = ["src"]