-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py.ORIG
35 lines (31 loc) · 1.13 KB
/
setup.py.ORIG
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
import os
from setuptools import setup, find_packages
def src(pth):
return os.path.join(os.path.dirname(__file__), pth)
# Project description
descr = 'My project description.'
setup(
name="package", # 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='First Author, Second author, Third author',
install_requires=['numpy >= 1.15.0',
'torch >= 1.2.0',
'pylops >= 1.17.0'],
packages=find_packages(),
use_scm_version=dict(root='.',
relative_to=__file__,
write_to=src('package/version.py')),
setup_requires=['setuptools_scm'],
)