forked from gempy-project/gempy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
27 lines (25 loc) · 873 Bytes
/
setup.py
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
from setuptools import setup, find_packages
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name='gempy',
version='2.0.0',
packages=find_packages(exclude=('test', 'docs')),
include_package_data=True,
install_requires=[
'cython',
'numpy',
'pandas',
'matplotlib',
'theano',
'scikit-image',
'seaborn'
],
url='https://github.com/cgre-aachen/gempy',
download_url='https://github.com/cgre-aachen/gempy/archive/2.0.0tar.gz',
license='LGPL v3',
author='Miguel de la Varga, Elisa Heim, Alexander Schaaf, Fabian Stamm, Florian Wellmann',
author_email='[email protected]',
description='An Open-source, Python-based 3-D structural geological modeling software.',
keywords=['geology', '3-D modeling', 'structural geology', 'uncertainty']
)