forked from gempy-project/gempy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
36 lines (33 loc) · 1.06 KB
/
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
32
33
34
35
36
from setuptools import setup, find_packages
version = '2.2.12'
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.3.4',
'Theano>=1.0.4',
'matplotlib',
'numpy==1.21.6',
'pytest',
'seaborn>=0.9',
'networkx',
'scikit-image>=0.17',
'pyvista>=0.25',
'pyvistaqt',
'pyqt5',
'iPython',
'scikit-learn',
'xarray==2022.3.0'
],
url='https://github.com/cgre-aachen/gempy',
license='LGPL v3',
author='Miguel de la Varga, Alexander Zimmerman, Elisa Heim, Alexander Schaaf, Fabian Stamm, Florian Wellmann, Jan Niederau',
author_email='varga@aices.rwth-aachen.de',
description='An Open-source, Python-based 3-D structural geological modeling software.',
long_description=long_description,
keywords=['geology', '3-D modeling', 'structural geology', 'uncertainty']
)