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
30 lines (28 loc) · 898 Bytes
/
setup.py
File metadata and controls
30 lines (28 loc) · 898 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
28
29
30
from setuptools import setup, find_packages
version = '2.2.2'
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name='gempy',
version=version,
packages=find_packages(exclude=('test', 'docs')),
include_package_data=True,
install_requires=[
'pandas',
'Theano>=1.0.4',
'matplotlib',
'numpy',
'pytest',
'seaborn>=0.9',
'networkx',
'scikit-image>=0.17',
'pyvista==0.24.3',
'iPython'
],
url='https://github.com/cgre-aachen/gempy',
license='LGPL v3',
author='Miguel de la Varga, Elisa Heim, Alexander Schaaf, Fabian Stamm, Florian Wellmann',
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']
)