Skip to content

Commit 3ab8749

Browse files
committed
setup: included long description from README and redirected home to github
1 parent 6e968d4 commit 3ab8749

1 file changed

Lines changed: 7 additions & 1 deletion

File tree

setup.py

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,20 @@
22

33
from setuptools import setup, find_packages
44

5+
with open("README.md", "r") as fh:
6+
long_description = fh.read()
7+
8+
59
setup(name='PyForecastTools',
610
version='1.0',
711
description='Model validation and forecast verification tools',
812
author='Steve Morley',
913
author_email='smorley@lanl.gov',
1014
license='BSD License',
11-
url='https://drsteve.github.io/PyForecastTools',
15+
url='https://github.com/drsteve/PyForecastTools',
1216
install_requires=['numpy'],
17+
long_description=long_description,
18+
long_description_content_type="text/markdown",
1319
packages=find_packages(exclude=['tests']),
1420
classifiers=['Development Status :: 4 - Beta',
1521
'License :: OSI Approved :: BSD License',

0 commit comments

Comments
 (0)