From 5db514d6b6c981a02b85a10564eb546c969a25a4 Mon Sep 17 00:00:00 2001 From: Ben Mather Date: Wed, 6 Sep 2017 17:08:19 +0100 Subject: [PATCH 1/3] Update repository url --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index b2eed95..87e376e 100644 --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ setup( name='validation', - url='https://github.com/JOIVY/validation', + url='https://github.com/bwhmather/python-validation', version='0.1.1', author='Ben Mather', author_email='bwhmather@bwhmather.com', From 64bf79eac0633781a7679673578ad7850ebb69ef Mon Sep 17 00:00:00 2001 From: Ben Mather Date: Wed, 6 Sep 2017 17:08:34 +0100 Subject: [PATCH 2/3] Fix license argument to match LICENSE and classfiers --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 87e376e..b7a85e0 100644 --- a/setup.py +++ b/setup.py @@ -8,7 +8,7 @@ author='Ben Mather', author_email='bwhmather@bwhmather.com', maintainer='', - license='BSD', + license='Apache Software License', description=( "A library for runtime type checking and validation of python values" ), From acc67da447cff2e65c2650d5639fa3c61bd642ed Mon Sep 17 00:00:00 2001 From: Ben Mather Date: Wed, 6 Sep 2017 17:11:20 +0100 Subject: [PATCH 3/3] Include README.rst as long description --- setup.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index b7a85e0..7643445 100644 --- a/setup.py +++ b/setup.py @@ -1,6 +1,10 @@ from setuptools import setup, find_packages +with open('README.rst') as _readme_file: + readme = _readme_file.read() + + setup( name='validation', url='https://github.com/bwhmather/python-validation', @@ -12,7 +16,7 @@ description=( "A library for runtime type checking and validation of python values" ), - long_description=__doc__, + long_description=readme, classifiers=[ 'Intended Audience :: Developers', 'License :: OSI Approved :: Apache Software License',