mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
* gnu/packages/patches/python-sshtunnel-pep518.patch: Remove uneeded patch content. Change-Id: Iaf97a87b855ab1b18721d5464e4cd2494c5040a0 Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
77 lines
2 KiB
Diff
77 lines
2 KiB
Diff
https://github.com/pahaz/sshtunnel/pull/304
|
|
---
|
|
|
|
diff --git a/pyproject.toml b/pyproject.toml
|
|
index b0471b7..fbc473a 100644
|
|
--- a/pyproject.toml
|
|
+++ b/pyproject.toml
|
|
@@ -1,3 +1,67 @@
|
|
[build-system]
|
|
requires = ["setuptools", "wheel"]
|
|
-build-backend = "setuptools.build_meta:__legacy__"
|
|
\ No newline at end of file
|
|
+build-backend = "setuptools.build_meta"
|
|
+
|
|
+[project]
|
|
+name = "sshtunnel"
|
|
+dynamic = ["version", "readme"]
|
|
+description = "Pure python SSH tunnels"
|
|
+license = {text = "MIT"}
|
|
+authors = [
|
|
+ {name = "Pahaz White", email = "pahaz.white@gmail.com"}
|
|
+]
|
|
+keywords = ["ssh", "tunnel", "paramiko", "proxy", "tcp-forward"]
|
|
+classifiers = [
|
|
+ "Development Status :: 3 - Alpha",
|
|
+ "Intended Audience :: Developers",
|
|
+ "Topic :: Software Development :: Build Tools",
|
|
+ "License :: OSI Approved :: MIT License",
|
|
+ "Programming Language :: Python :: 2",
|
|
+ "Programming Language :: Python :: 2.7",
|
|
+ "Programming Language :: Python :: 3",
|
|
+ "Programming Language :: Python :: 3.4",
|
|
+ "Programming Language :: Python :: 3.5",
|
|
+ "Programming Language :: Python :: 3.6",
|
|
+ "Programming Language :: Python :: 3.7",
|
|
+ "Programming Language :: Python :: 3.8",
|
|
+]
|
|
+requires-python = ">=2.7"
|
|
+dependencies = [
|
|
+ "paramiko>=2.7.2",
|
|
+]
|
|
+
|
|
+[project.urls]
|
|
+Homepage = "https://github.com/pahaz/sshtunnel"
|
|
+Download = "https://pypi.python.org/packages/source/s/sshtunnel/"
|
|
+
|
|
+[project.optional-dependencies]
|
|
+dev = ["check-manifest"]
|
|
+test = ["tox>=1.8.1"]
|
|
+build_sphinx = ["sphinx", "sphinxcontrib-napoleon"]
|
|
+
|
|
+[project.scripts]
|
|
+sshtunnel = "sshtunnel:_cli_main"
|
|
+
|
|
+[tool.setuptools]
|
|
+py-modules = ["sshtunnel"]
|
|
+
|
|
+[tool.setuptools.dynamic]
|
|
+version = {attr = "sshtunnel.__version__"}
|
|
+readme = {file = ["README.rst", "docs.rst", "changelog.rst"], content-type = "text/x-rst"}
|
|
+
|
|
+[tool.setuptools.package-data]
|
|
+tests = ["testrsa.key"]
|
|
+
|
|
+[tool.bdist_wheel]
|
|
+universal = true
|
|
+
|
|
+[tool.check-manifest]
|
|
+ignore = [
|
|
+ ".travis.yml",
|
|
+ "circle.yml",
|
|
+ "tox.ini"
|
|
+]
|
|
+
|
|
+[tool.build_sphinx]
|
|
+source-dir = "docs/"
|
|
+build-dir = "docs/_build"
|