-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
executable file
·45 lines (42 loc) · 1.51 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
40
41
42
43
44
45
import os
from distutils.core import setup
from setuptools import find_packages
def src(pth):
return os.path.join(os.path.dirname(__file__), pth)
# Project description
descr = """
An extension to PyLops for linear operators on GPUs.
"""
# Setup
setup(
name='pylops_gpu',
description=descr,
long_description=open(src('README.md')).read(),
long_description_content_type='text/markdown',
keywords=['algebra',
'inverse problems',
'large-scale optimization'],
classifiers=[
'Development Status :: 1 - Planning',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)',
'Natural Language :: English',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Topic :: Scientific/Engineering :: Mathematics'
],
author='mrava',
author_email='[email protected]',
install_requires=['numpy >= 1.15.0',
'torch >= 1.2.0',
'pytorch_complex_tensor',
'pylops <= 1.13.0'],
packages=find_packages(exclude=['pytests']),
use_scm_version=dict(root = '.',
relative_to = __file__,
write_to = src('pylops_gpu/version.py')),
setup_requires=['pytest-runner', 'setuptools_scm'],
test_suite='pytests',
tests_require=['pytest'],
zip_safe=True)