-
Notifications
You must be signed in to change notification settings - Fork 48
/
setup.py
37 lines (29 loc) · 830 Bytes
/
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
#!/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 implementation
CuPy/PyTorch CUDA and NumPy/PyTorch CUDA implementation
"""
setup_info = dict(
# Metadata
name='scatwave',
version=VERSION,
author='Edouard Oyallon, Eugene Belilovsky, Sergey Zagoruyko',
author_email='edouard.oyallon@ens.fr, eugene.belilovsky@inria.fr, sergey.zagoruyko@enpc.fr',
url='https://github.com/edouardoyallon/pyscatwave',
description='Fast CPU/CUDA Scattering implementation',
long_description=long_description,
license='BSD',
# Package info
packages=find_packages(exclude=('test',)),
zip_safe=True,
install_requires=[
'torch',
'six'
]
)
setup(**setup_info)