-
Notifications
You must be signed in to change notification settings - Fork 11
/
setup.py
35 lines (31 loc) · 1.45 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
#!/usr/bin/env python
from setuptools import setup, find_packages
with open("README.md", "r") as fh:
long_description = fh.read()
setup(name='PyForecastTools',
version='1.1.1',
description='Model validation and forecast verification tools',
author='Steve Morley',
author_email='smorley@lanl.gov',
license='BSD License',
url='https://github.com/drsteve/PyForecastTools',
install_requires=['numpy', 'matplotlib'],
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',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Astronomy',
'Topic :: Scientific/Engineering :: Atmospheric Science',
'Topic :: Scientific/Engineering :: Information Analysis',
'Topic :: Scientific/Engineering :: Physics',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
],
test_suite='test_verify.py'
)