We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a8b2883 commit 89c5b57Copy full SHA for 89c5b57
.gitignore
@@ -1,4 +1,5 @@
1
sshuttle/version.py
2
+docs/conf.py
3
*.pyc
4
*~
5
*.8
docs/conf.py renamed to docs/conf.orig.py
setup.py
@@ -18,7 +18,12 @@
18
# along with python-tldap If not, see <http://www.gnu.org/licenses/>.
19
20
from setuptools import setup, find_packages
21
+import shutil
22
23
+with open("./docs/conf.orig.py", "r") as src:
24
+ with open("./docs/conf.py", "w") as dst:
25
+ dst.write("# FILE COPIED FROM conf.orig.py; DO NOT CHANGE\n")
26
+ shutil.copyfileobj(src, dst)
27
28
def version_scheme(version):
29
from setuptools_scm.version import guess_next_dev_version
0 commit comments