-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (20 loc) · 690 Bytes
/
setup.py
File metadata and controls
24 lines (20 loc) · 690 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/usr/bin/env python
"""
setup.py
This is the setup file for the GeoData python package.
To install as a package in development: pip install -e .
To uninstall: pip uninstall .
@author: John Swoboda
"""
req = ['nose','six','python-dateutil','pathlib2','tables', 'h5py','pandas', 'numpy','scipy','astropy']
from setuptools import setup,find_packages
setup(description='GeoData class and needed functions.',
author='John Swoboda',
version='0.2.0',
install_requires=req,
extras_require={'plot':['mayavi','matplotlib','seaborn'],
'io':['beautifulsoup4'],},
packages=find_packages(),
name='GeoData',
python_requires='>=2.7',
)