diff --git a/setup.py b/setup.py index ad24c58..64ded09 100644 --- a/setup.py +++ b/setup.py @@ -21,9 +21,14 @@ def read(fname): author='Continuum Analytics', author_email='blaze-dev@continuum.io', description='A data description language.', - license='BSD', + license='BSD-2-Clause', keywords='data language', - url='http://datashape.readthedocs.org/en/latest/', + url='https://github.com/blaze/datashape', + project_urls = { + "Source Code": "https://github.com/blaze/datashape", + "Bug Tracker": "https://github.com/blaze/datashape/issues", + "Documentation": "https://datashape.readthedocs.io/en/latest/", + }, packages=['datashape', 'datashape.util', 'datashape.tests'], install_requires=read('requirements.txt').strip().split('\n'), long_description=read('README.rst'),