-
Notifications
You must be signed in to change notification settings - Fork 23
/
setup.py
17 lines (16 loc) · 875 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
from __future__ import absolute_import
from setuptools import setup
setup(name='lmatools',
version='0.6a',
description='Python tools for processing and visualizing Lightning Mapping Array data',
author='Eric Bruning',
author_email='[email protected]',
url='https://github.com/deeplycloudy/lmatools/',
# package_dir={'lmatools': ''}, # wouldn't be necessary if we reorganized to traditional package layout with lmatools at the same directory level as the setup.py script.
packages=['lmatools', 'lmatools.flashsort', 'lmatools.flashsort.autosort',
'lmatools.io', 'lmatools.lasso', 'lmatools.grid',
'lmatools.stream', 'lmatools.vis', 'lmatools.test',
'lmatools.sampledata',],
package_data={'lmatools.sampledata':['ASCII_solutions/*.dat.gz']},
install_requires=['numpy','scipy','pyproj'],
)