-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (28 loc) · 804 Bytes
/
setup.py
File metadata and controls
32 lines (28 loc) · 804 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
31
32
import os
from glob import glob
from setuptools import setup, find_packages
def src(pth):
return os.path.join(os.path.dirname(__file__), pth)
# Project description
descr = 'Image-guided diffusion sampling to accelerate uncertainty quantification in full waveform inversion.'
from setuptools import setup
setup(
name="guidedfwi",
description=descr,
keywords=['inverse problems',
'generative models',
'deep learning',
'tomography',
'fwi',
'seismic'],
author='Mohammad Hasyim Taufik',
author_email='mohammad.taufik@kaust.edu.sa',
packages=find_packages(where='src'),
package_dir={'': 'src'},
install_requires=[
'numpy',
'pandas',
'scipy',
'setuptools_scm',
],
)