-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
37 lines (33 loc) · 1.27 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
import os
from setuptools import setup, find_packages
def src(pth):
return os.path.join(os.path.dirname(__file__), pth)
# Project description
descr = 'Seismic_PnP'
setup(
name="pnpseismic", # Choose your package name
description=descr,
long_description=open(src('README.md')).read(),
keywords=['inverse problems',
'deep learning',
'seismic'],
classifiers=[
'Intended Audience :: Science/Research',
'Natural Language :: English',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Topic :: Scientific/Engineering :: Mathematics'
],
author='Juan Romero, Miguel Corrales, Nick Luiken, Matteo Ravasi',
install_requires=['numpy >= 1.15.0',
'torch==1.10.1',
'pyproximal',
'pylops >= 1.17.0',
'setuptools >= 61.2.0'],
packages=find_packages(),
use_scm_version=dict(root='.',
relative_to=__file__,
write_to=src('pnpseismic/version.py')),
setup_requires=['setuptools_scm'],
)