-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
59 lines (46 loc) · 1.48 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
56
57
58
59
import os
from setuptools import setup, find_packages
PACKAGE_NAME = "snag"
AUTHOR = "Jared Lewis"
AUTHOR_EMAIL = "jared@bodekerscientific.com"
DESCRIPTION = "Single column model Namelist Auto Generator"
version = None
exec(open('snag/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="MIT",
packages=find_packages(exclude=["tests"]),
long_description=read('README.rst'),
url='https://github.com/bodekerscientific/snag', # use the URL to the github repo
download_url='https://github.com/bodekerscientific/snag/archive/{}.tar.gz'.format(version),
install_requires=[
'cf_units',
'pyyaml',
'six',
'netCDF4',
'numpy',
'xarray'
],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Atmospheric Science'
],
keywords='namelist scm climate generator',
entry_points={
'console_scripts':
['snag = snag.cli:main']
},
)