mirror of
https://github.com/sshuttle/sshuttle.git
synced 2024-11-21 15:33:23 +01:00
Fix error in requirements.rst
This commit is contained in:
parent
6c6a39fefa
commit
e76d1e14bd
1
.gitignore
vendored
1
.gitignore
vendored
@ -1,5 +1,4 @@
|
|||||||
/sshuttle/version.py
|
/sshuttle/version.py
|
||||||
/docs/conf.py
|
|
||||||
/tmp/
|
/tmp/
|
||||||
/.cache/
|
/.cache/
|
||||||
/.eggs/
|
/.eggs/
|
||||||
|
@ -6,7 +6,6 @@ include LICENSE
|
|||||||
include run
|
include run
|
||||||
include tox.ini
|
include tox.ini
|
||||||
exclude sshuttle/version.py
|
exclude sshuttle/version.py
|
||||||
exclude docs/conf.py
|
|
||||||
recursive-include docs *.bat
|
recursive-include docs *.bat
|
||||||
recursive-include docs *.py
|
recursive-include docs *.py
|
||||||
recursive-include docs *.rst
|
recursive-include docs *.rst
|
||||||
|
@ -42,7 +42,7 @@ information.
|
|||||||
|
|
||||||
|
|
||||||
MacOS / FreeBSD / OpenBSD / pfSense
|
MacOS / FreeBSD / OpenBSD / pfSense
|
||||||
~~~~~~~~~~~~~~~~~~~~~~~~~
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||||
Method: pf
|
Method: pf
|
||||||
|
|
||||||
Supports:
|
Supports:
|
||||||
|
6
setup.py
6
setup.py
@ -18,18 +18,14 @@
|
|||||||
# along with python-tldap If not, see <http://www.gnu.org/licenses/>.
|
# along with python-tldap If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
from setuptools import setup, find_packages
|
from setuptools import setup, find_packages
|
||||||
import shutil
|
|
||||||
|
|
||||||
with open("./docs/conf.orig.py", "r") as src:
|
|
||||||
with open("./docs/conf.py", "w") as dst:
|
|
||||||
dst.write("# FILE COPIED FROM conf.orig.py; DO NOT CHANGE\n")
|
|
||||||
shutil.copyfileobj(src, dst)
|
|
||||||
|
|
||||||
def version_scheme(version):
|
def version_scheme(version):
|
||||||
from setuptools_scm.version import guess_next_dev_version
|
from setuptools_scm.version import guess_next_dev_version
|
||||||
version = guess_next_dev_version(version)
|
version = guess_next_dev_version(version)
|
||||||
return version.lstrip("v")
|
return version.lstrip("v")
|
||||||
|
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
name="sshuttle",
|
name="sshuttle",
|
||||||
use_scm_version={
|
use_scm_version={
|
||||||
|
Loading…
Reference in New Issue
Block a user