-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (22 loc) · 736 Bytes
/
setup.py
File metadata and controls
24 lines (22 loc) · 736 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
from distutils.core import setup
import numpy
from Cython.Build import cythonize
# compiling the cython files, no install
setup(
name="wavelet",
version='0.0.2',
author='AP-Atul',
author_email='atulpatare99@gmail.com',
packages=['wavelet/',
'wavelet/exceptions',
'wavelet/extension',
'wavelet/util',
'wavelet/wavelets/',
'wavelet/compression'],
ext_modules=cythonize(["./wavelet/extension/wavelet_transform.pyx",
"./wavelet/extension/base_transform.pyx"]),
include_dirs=[numpy.get_include()],
zip_safe=False,
url='https://github.com/AP-Atul/Wavelets',
long_description=open('README.md').read(),
)