-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
39 lines (37 loc) · 1.19 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
39
from setuptools import setup, find_packages
with open("README.md") as readme_file:
readme = readme_file.read()
setup(
name='pide',
version='1.0.2',
package_data = {
'pide' :[
'pide_src/*csv',
'pide_src/*json',
'pide_src/water_sol/*csv',
'pide_src/water_partitioning/*csv',
'pide_src/cond_models/*csv',
'pide_src/cond_models/minerals/*csv',
'pide_src/cond_models/rocks/*csv'
],
},
description='A library for petrophysical interpretations of geophysical models.',
author='Sinan Ozaydin, Lu Li, Utpal Singh, Patrice F. Rey, Maria Constanza Manassero',
author_email='[email protected]',
url='https://github.com/sinanozaydin/pide',
python_requires=">3.8",
license='GNU Lesser General Public License v3 (LGPLv3)',
packages=find_packages(),
install_requires=[
'numpy',
'matplotlib',
'scipy',
'santex>=1.2.2',
'h5py',
'harmonica',
'pyproj',
'netCDF4',
'psutil',
],
keywords = ['petrophysics', 'geodynamic modelling', 'magnetotelluric', 'electrical conductivity', 'seismic velocity']
)