forked from comp-imaging/ProxImaL
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
30 lines (29 loc) · 1.11 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
from setuptools import setup
setup(
name='proximal',
version='0.1.7',
packages=['proximal',
'proximal.prox_fns',
'proximal.lin_ops',
'proximal.algorithms',
'proximal.utils',
'proximal.halide',
'proximal.tests',
'proximal.tests.data'],
package_dir={'proximal': 'proximal'},
package_data={'proximal.tests.data': ['angela.jpg'],
'proximal.halide': ['src/*.cpp', 'src/core/*', 'src/external/*', 'src/fft/*',
'src/user-problem/*',
'src/algorithm/*',
'subprojects/halide.wrap',
'subprojects/pybind11.wrap',
'subprojects/range-v3.wrap',
'subprojects/packagefiles/halide/meson.build',
'meson.build']},
url='http://github.com/comp-imaging/ProxImaL/',
install_requires=["numpy <= 1.26.0",
"scipy >= 0.15",
"numexpr <= 2.10.1",
"Pillow",
"meson >= 0.58"],
)