-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
30 lines (27 loc) · 1.06 KB
/
pyproject.toml
File metadata and controls
30 lines (27 loc) · 1.06 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
[build-system]
requires = ["setuptools>=64.0", "cython", "setuptools_scm>=8", "wheel", "build"]
build_backend = "setuptools.build_meta"
[project]
name="ssh2-python3"
dynamic = ["version", "dependencies", "scripts"]
description = "Super fast SSH library - bindings for libssh2 and Python 3"
readme = "README.md"
license = "LGPL-2.1"
license-files = ["LICENSE"]
authors = [{name = "Panos Kittenis", email = "22e889d8@opayq.com"}]
maintainers = [{name = "Keith Dart", email = "keith.dart@gmail.com"}]
requires-python = ">=3.10"
keywords = ["ssh"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: Implementation :: CPython",
"Intended Audience :: Developers",
"Topic :: System :: Networking",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
"Operating System :: POSIX :: Linux",
]
[project.urls]
Repository = "https://github.com/pycopia/ssh2-python3"