forked from gempy-project/gempy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
22 lines (21 loc) · 663 Bytes
/
Copy pathsetup.py
File metadata and controls
22 lines (21 loc) · 663 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
from setuptools import setup
setup(
name='gempy',
version='0.997',
packages=['gempy'],
install_requires=[
'numpy',
'pandas',
'matplotlib',
'theano',
'scikit-image',
'seaborn'
],
url='https://github.com/cgre-aachen/gempy',
download_url='https://github.com/cgre-aachen/gempy/archive/0.997.tar.gz',
license='MIT',
author='Miguel de la Varga, Alexander Schaaf',
author_email='varga@aices.rwth-aachen.de',
description='An Open-source, Python-based 3-D structural geological modeling software.',
keywords=['geology', '3-D modeling', 'structural geology', 'uncertainty']
)