forked from gempy-project/gempy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
31 lines (29 loc) · 937 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
28
29
30
31
from setuptools import setup, find_packages
version = '2.2.7'
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name='gempy',
version=version,
packages=find_packages(exclude=('test', 'docs', 'examples')),
include_package_data=True,
install_requires=[
'pandas>=1.0.5',
'Theano>=1.0.4',
'matplotlib',
'numpy',
'pytest',
'seaborn>=0.9',
'networkx',
'scikit-image>=0.17',
'pyvista>=0.25',
'pyvistaqt',
'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='[email protected]',
description='An Open-source, Python-based 3-D structural geological modeling software.',
keywords=['geology', '3-D modeling', 'structural geology', 'uncertainty']
)