-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
42 lines (34 loc) · 1.17 KB
/
setup.py
File metadata and controls
42 lines (34 loc) · 1.17 KB
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
#!/usr/bin/env python
import os
import shutil
import sys
from setuptools import setup, find_packages
VERSION = '0.0.1'
long_description = """
Fast CPU/CUDA Scattering Transform implementation for 1D, 2D, and 3D signals
CuPy/PyTorch CUDA and NumPy/PyTorch CUDA implementation
"""
setup_info = dict(
# Metadata
name='scattering',
version=VERSION,
author=('Edouard Oyallon, Eugene Belilovsky, Sergey Zagoruyko, '
'Michael Eickenberg, Mathieu Andreux, Georgios Exarchakis, '
'Louis Thiry, Vincent Lostanlen'),
author_email=('edouard.oyallon@ens.fr, eugene.belilovsky@inria.fr, '
'sergey.zagoruyko@enpc.fr, michael.eickenberg@berkeley.edu, '
'mathieu.andreux@ens.fr, georgios.exarchakis@ens.fr, '
'louis.thiry@ens.fr, vincent.lostanlen@ens.fr'),
url='https://github.com/edouardoyallon/pyscatwave',
description='Fast CPU/CUDA Scattering Transform implementation',
long_description=long_description,
license='BSD',
# Package info
packages=find_packages(exclude=('test',)),
zip_safe=True,
install_requires=[
'torch',
'six'
]
)
setup(**setup_info)