We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6e968d4 commit 3ab8749Copy full SHA for 3ab8749
1 file changed
setup.py
@@ -2,14 +2,20 @@
2
3
from setuptools import setup, find_packages
4
5
+with open("README.md", "r") as fh:
6
+ long_description = fh.read()
7
+
8
9
setup(name='PyForecastTools',
10
version='1.0',
11
description='Model validation and forecast verification tools',
12
author='Steve Morley',
13
author_email='smorley@lanl.gov',
14
license='BSD License',
- url='https://drsteve.github.io/PyForecastTools',
15
+ url='https://github.com/drsteve/PyForecastTools',
16
install_requires=['numpy'],
17
+ long_description=long_description,
18
+ long_description_content_type="text/markdown",
19
packages=find_packages(exclude=['tests']),
20
classifiers=['Development Status :: 4 - Beta',
21
'License :: OSI Approved :: BSD License',
0 commit comments