From 366ad29bb10d530be832ce934492324f62b2ac57 Mon Sep 17 00:00:00 2001 From: Oleg Broytman Date: Wed, 25 Apr 2018 00:29:13 +0300 Subject: [PATCH] Build, docs: Change installation name/URL Prepare to release to PyPI: Remove trusted-host and find-links. --- docs/install.rst | 6 +++--- setup.cfg | 1 - setup.py | 5 ++--- 3 files changed, 5 insertions(+), 7 deletions(-) diff --git a/docs/install.rst b/docs/install.rst index d950de1..f3c1610 100644 --- a/docs/install.rst +++ b/docs/install.rst @@ -6,21 +6,21 @@ System-wide :: - sudo pip install --trusted-host phdru.name --find-links=http://phdru.name/Software/Python/ m_librarian + sudo pip install m_librarian User mode --------- :: - pip install --trusted-host phdru.name --find-links=http://phdru.name/Software/Python/ --user m_librarian + pip install --user m_librarian Virtual envs ------------ :: - pip install --trusted-host phdru.name --find-links=http://phdru.name/Software/Python/ m_librarian + pip install m_librarian Progress bar ============ diff --git a/setup.cfg b/setup.cfg index 39c17d2..b5b0e16 100644 --- a/setup.cfg +++ b/setup.cfg @@ -2,7 +2,6 @@ universal = 1 [easy_install] -find_links = http://phdru.name/Software/Python/ optimize = 2 [egg_info] diff --git a/setup.py b/setup.py index b8ca820..9759e7f 100755 --- a/setup.py +++ b/setup.py @@ -18,9 +18,8 @@ setup( url='http://phdru.name/Software/Python/m_librarian/', project_urls={ 'Homepage': 'http://phdru.name/Software/Python/m_librarian/', - 'Download': - 'http://phdru.name/Software/Python/m_librarian/' - 'm_librarian-%s.tar.bz2' % m_librarian_version.__version__, + 'Download': 'https://pypi.org/project/m_librarian/%s/' + % m_librarian_version.__version__, 'Documentation': 'http://phdru.name/Software/Python/m_librarian/docs/', 'Russian docs': -- 2.39.2