From 0e85508e27ede6846adf64aac6409f727af7de8d Mon Sep 17 00:00:00 2001 From: Nik Nyby Date: Thu, 13 Aug 2015 15:40:52 -0400 Subject: [PATCH] use https url in setup.py --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 21ebde0..a481602 100644 --- a/setup.py +++ b/setup.py @@ -6,11 +6,11 @@ author='Julian Amaya', author_email='julian@monoku.com', packages=['django_decorators'], - url='http://pypi.python.org/pypi/django-decorators/', + url='https://pypi.python.org/pypi/django-decorators/', license='LICENSE.md', description='A bunch of django extra decorators.', long_description=open('README.md').read(), install_requires=[ "Django >= 1.1.1", ], -) \ No newline at end of file +)