-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (21 loc) · 773 Bytes
/
Copy pathsetup.py
File metadata and controls
23 lines (21 loc) · 773 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
from setuptools import setup
setup(name='gams',
version='0.0.83',
description='GUI tool providing various transformations of magnetic data',
url='http://github.com/eroots/gams',
author='Eric Roots',
author_email='eroots087@gmail.com',
packages=['gams',
'gams.GUI',
'gams.utils',
'gams.resources'],
long_description=open('readme.rst').read(),
scripts=[],
entry_points={'console_scripts': ['gams = gams.GUI.gams_gui:main']},
install_requires=['numpy',
'scipy',
'matplotlib',
'geoh5py',
'scikit-image',
'pyqt5'],
include_package_data=True)