Skip to content

Commit

Permalink
setup: included long description from README and redirected home to g…
Browse files Browse the repository at this point in the history
…ithub
  • Loading branch information
drsteve committed Jun 28, 2018
1 parent 6e968d4 commit 3ab8749
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,20 @@

from setuptools import setup, find_packages

with open("README.md", "r") as fh:
long_description = fh.read()


setup(name='PyForecastTools',
version='1.0',
description='Model validation and forecast verification tools',
author='Steve Morley',
author_email='smorley@lanl.gov',
license='BSD License',
url='https://drsteve.github.io/PyForecastTools',
url='https://github.com/drsteve/PyForecastTools',
install_requires=['numpy'],
long_description=long_description,
long_description_content_type="text/markdown",
packages=find_packages(exclude=['tests']),
classifiers=['Development Status :: 4 - Beta',
'License :: OSI Approved :: BSD License',
Expand Down

0 comments on commit 3ab8749

Please sign in to comment.