forked from PyLops/pyproximal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·42 lines (39 loc) · 1.52 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
import os
from setuptools import setup, find_packages
def src(pth):
return os.path.join(os.path.dirname(__file__), pth)
# Project description
descr = 'Python library implementing proximal operators to allow solving ' \
'non-smooth, constrained convex problems with proximal algorithms.'
# Setup
setup(
name='pyproximal',
description=descr,
long_description=open(src('README.md')).read(),
long_description_content_type='text/markdown',
keywords=['algebra',
'inverse problems',
'proximal',
'convex optimization',
'large-scale optimization'],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: GNU Lesser General Public License v2 or later (LGPLv2+)',
'Natural Language :: English',
'Programming Language :: Python :: 3.8',
'Topic :: Scientific/Engineering :: Mathematics'
],
author='mrava',
author_email='matteoravasi@gmail.com',
install_requires=['numpy >= 1.15.0', 'scipy >= 1.8.0', 'pylops'],
extras_require={'advanced': ['llvmlite', 'numba']},
packages=find_packages(exclude=['pytests']),
use_scm_version=dict(root='.',
relative_to=__file__,
write_to=src('pyproximal/version.py')),
setup_requires=['pytest-runner', 'setuptools_scm'],
test_suite='pytests',
tests_require=['pytest'],
zip_safe=True)