-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
27 lines (22 loc) · 809 Bytes
/
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
"""Setup file to generate a distribution of njord
usage: python setup.py sdist
python setup.py install
"""
from distutils.core import setup
setup(name = 'satnrt',
version = '0.5',
description = 'Download and merge NRT satellite fields from NASA',
long_description = "README.md",
#long_description=open('docs/README.rst', 'rt').read()
author = 'Bror Jonsson',
author_email = '[email protected]',
url = 'http://github.com/brorfred/neartime',
requires = ["numpy(>=1.5)",
"matplotlib(>=1.1.0)",
"mpl_toolkits(>=1.0)",
"requests(>=1.1.0)",
"projmap(>=0.5)"],
packages = ['satnrt'],
scripts = ["slippy.py",],
#package_data = {'njord': ['njord.cfg']},
)