-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
55 lines (43 loc) · 1.4 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
import os
from setuptools import setup, find_packages
PACKAGE_NAME = "nz_snow_tools"
AUTHOR = "Jono Conway"
AUTHOR_EMAIL = "jono.conway@niwa.co.nz"
DESCRIPTION = "Tools to run and evaluate snow models"
version = None
exec(open('nz_snow_tools/version.py').read())
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name=PACKAGE_NAME,
version=version,
author=AUTHOR,
author_email=AUTHOR_EMAIL,
description=DESCRIPTION,
license="GPL-3.0",
packages=find_packages(exclude=["tests"]),
long_description=read('README.rst'),
url='https://github.com/bodekerscientific/nz_snow_tools', # use the URL to the github repo
download_url='https://github.com/bodekerscientific/nz_snow_tools/archive/master.zip',
install_requires=[
'matplotlib',
'netCDF4',
'numpy',
'basemap',
'pyshp',
'pillow',
'pyproj',
'f90nml'
],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Intended Audience :: System Administrators',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Atmospheric Science'
],
keywords='snow climate model evaluation',
)