forked from gempy-project/gempy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
38 lines (35 loc) · 1.16 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
37
38
from setuptools import setup, find_packages, Extension
version = '2.3.2'
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==2.0.1',
'aesara',
'pymc',
'matplotlib',
'numpy',
'pytest',
'seaborn>=0.9',
'networkx',
'scikit-image>=0.17',
'scikit-learn',
'pyvista==0.39.1',
'pyvistaqt==0.10.0',
'pyqt5',
'iPython',
'xarray'
],
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, Andrew Annex, Alexander Juestel',
author_email='[email protected]',
description='An Open-source, Python-based 3-D structural geological modeling software.',
long_description_content_type='text/markdown',
long_description=long_description,
keywords=['geology', '3-D modeling', 'structural geology', 'uncertainty']
)