From: Oleg Broytman Date: Fri, 25 May 2018 08:22:42 +0000 (+0300) Subject: Upgrade: http://phdru.name -> https://phdru.name X-Git-Url: https://git.phdru.name/?p=cookiecutter.git;a=commitdiff_plain;h=25038de79ea50c08585345522f860f13e9224857 Upgrade: http://phdru.name -> https://phdru.name --- diff --git a/project_template/README.rst b/project_template/README.rst index d876efc..749389f 100644 --- a/project_template/README.rst +++ b/project_template/README.rst @@ -10,8 +10,8 @@ License: GPL. This is {project}. -| Home Page: http://phdru.name/Software/Python/{project}/ -| Documentation: http://phdru.name/Software/Python/{project}/docs/ -| Git repo: http://git.phdru.name/{project}.git/ +| Home Page: https://phdru.name/Software/Python/{project}/ +| Documentation: https://phdru.name/Software/Python/{project}/docs/ +| Git repo: https://git.phdru.name/{project}.git/ | GitHub repo: https://github.com/phdru/{project} | Issue tracker: https://github.com/phdru/{project}/issues diff --git a/project_template/devscripts/README.html b/project_template/devscripts/README.html index edb7443..3bbd989 100644 --- a/project_template/devscripts/README.html +++ b/project_template/devscripts/README.html @@ -1 +1 @@ -Broytman {project} +Broytman {project} diff --git a/project_template/devscripts/requirements/requirements.txt b/project_template/devscripts/requirements/requirements.txt index 788a287..ccdf6d1 100644 --- a/project_template/devscripts/requirements/requirements.txt +++ b/project_template/devscripts/requirements/requirements.txt @@ -1,5 +1,5 @@ --trusted-host phdru.name ---find-links=http://phdru.name/Software/Python/ +--find-links=https://phdru.name/Software/Python/ --install-option=-O2 m_lib.defenc >= 1.0 diff --git a/project_template/docs/install.rst b/project_template/docs/install.rst index 91b5c3e..cfaf935 100644 --- a/project_template/docs/install.rst +++ b/project_template/docs/install.rst @@ -6,14 +6,14 @@ System-wide :: - sudo pip install --find-links=http://phdru.name/Software/Python/ --no-index --install-option='-O2' {project} + sudo pip install --find-links=https://phdru.name/Software/Python/ --no-index --install-option='-O2' {project} User mode --------- :: - pip install --find-links=http://phdru.name/Software/Python/ --no-index --install-option='-O2' --user {project} + pip install --find-links=https://phdru.name/Software/Python/ --no-index --install-option='-O2' --user {project} Installation from sources ========================= diff --git a/project_template/setup.cfg b/project_template/setup.cfg index d84280f..ab2e677 100644 --- a/project_template/setup.cfg +++ b/project_template/setup.cfg @@ -2,7 +2,7 @@ universal = 1 [easy_install] -find_links = http://phdru.name/Software/Python/ +find_links = https://phdru.name/Software/Python/ optimize = 2 [egg_info] diff --git a/project_template/setup.py b/project_template/setup.py index 52cb27e..21eeadb 100755 --- a/project_template/setup.py +++ b/project_template/setup.py @@ -15,16 +15,16 @@ setup( long_description_content_type="text/x-rst", author='Oleg Broytman', author_email='phd@phdru.name', - url='http://phdru.name/Software/Python/{project}', - download_url='http://phdru.name/Software/Python/{project}', + url='https://phdru.name/Software/Python/{project}', + download_url='https://phdru.name/Software/Python/{project}', project_urls={ - 'Homepage': 'http://phdru.name/Software/Python/{project}', + 'Homepage': 'https://phdru.name/Software/Python/{project}', 'Documentation': - 'http://phdru.name/Software/Python/{project}/docs/', + 'https://phdru.name/Software/Python/{project}/docs/', 'Russian docs': - 'http://phdru.name/Software/Python/{project}/docs/ru/', - 'Download': 'http://phdru.name/Software/Python/{project}', - 'Git repo': 'http://git.phdru.name/{project}.git/', + 'https://phdru.name/Software/Python/{project}/docs/ru/', + 'Download': 'https://phdru.name/Software/Python/{project}', + 'Git repo': 'https://git.phdru.name/{project}.git/', 'Github repo': 'https://github.com/phdru/{project}', 'Issue tracker': 'https://github.com/phdru/{project}/issues', },