From 4518d4e9b12f2d3079b421968421dd6a5906074b Mon Sep 17 00:00:00 2001 From: lamhoangtung Date: Tue, 1 Dec 2020 22:35:29 +0700 Subject: [PATCH] Rename pypi package --- README.md | 4 ++-- setup.py | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 111cc3c..d095fca 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ Create SSH tunel to a running colab notebook ## Usage Create a new Colab notebook with two cell with the following content: ```python -!pip3 install colab_ssh +!pip3 install linus_colab_ssh from colab_ssh import setup_ssh, loop_forever @@ -31,6 +31,6 @@ Then voila ;) ## Disclaimer -This repo contains many of the configuration that I use for my day to day work so your milage may vary. +This repo contains many of the configuration that I use for my day to day work so it might not be the best for you. If you had any problems using this, feel free to open an issue. Otherwise, I highly recommend you to fork this repo and did some necessary modification for yourself. Thanks for checking by \ No newline at end of file diff --git a/setup.py b/setup.py index 10db80b..3f8d376 100644 --- a/setup.py +++ b/setup.py @@ -18,7 +18,7 @@ def parse_requirements(filename): install_requires = parse_requirements('requirements.txt') setup( - name="colab_ssh", + name="linus_colab_ssh", version=__version__, description='Create SSH tunel to a running colab notebook', long_description=readme(), @@ -34,7 +34,7 @@ def parse_requirements(filename): setup_requires=[], dependency_links=[], python_requires='>=3', - py_modules=['colab_ssh'], + py_modules=['ssh_colab'], classifiers=[ 'Intended Audience :: Developers', 'Topic :: Software Development :: Libraries',