forked from geomagpy/magpy
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (25 loc) · 914 Bytes
/
setup.py
File metadata and controls
27 lines (25 loc) · 914 Bytes
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
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
exec(open('magpy/version.py').read())
setup(
name='GeomagPy',
version=__version__,
author='R. Leonhardt, R. Bailey, M. Miklavec',
author_email='roman.leonhardt@zamg.ac.at',
packages=['magpy', 'magpy.opt', 'magpy.examples', 'magpy.lib', 'magpy.acquisition', 'magpy.collector', 'magpy.gui'],
scripts=['magpy/gui/xmagpy','magpy/gui/xmagpyw'],
url='http://pypi.python.org/pypi/GeomagPy/',
license='LICENSE.txt',
description='Geomagnetic analysis tools.',
long_description=open('README.rst').read(),
package_data={'magpy': ['gui/*.png','gui/*.xpm','examples/*.cdf','examples/*.bin','examples/*.txt']},
install_requires=[
"matplotlib >= 2.0.2",
"numpy >= 1.5.0",
"scipy >= 0.8.6",
#"MySQL-python >= 1.2.3",
#"pexpect >= 3.1",
],
)