diff --git a/setup.py b/setup.py index b2eed95..7643445 100644 --- a/setup.py +++ b/setup.py @@ -1,18 +1,22 @@ from setuptools import setup, find_packages +with open('README.rst') as _readme_file: + readme = _readme_file.read() + + 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', maintainer='', - license='BSD', + license='Apache Software License', 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',