-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
33 lines (29 loc) · 956 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
32
33
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 = 'Repository for DW0037: Wavefield solutions using a physics-informed neural network as a function of velocity.'
from setuptools import setup
setup(
name="latentpinn",
description=descr,
long_description=open(src('README.md')).read(),
keywords=['inverse problems',
'generative models',
'deep learning',
'tomography',
'efwi',
'seismic'],
author='Mohammad H. Taufik, Xinquan Huang, Tariq Alkhalifah',
author_email='mohammad.taufik@kaust.edu.sa, xinquan.huang@kaust.edu.sa, tariq.alkhalifah@kaust.edu.sa',
packages=find_packages(where='src'),
package_dir={'': 'src'},
install_requires=[
'numpy',
'pandas',
'scipy',
'setuptools_scm',
],
)