-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
34 lines (32 loc) · 826 Bytes
/
setup.py
File metadata and controls
34 lines (32 loc) · 826 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
25
26
27
28
29
30
31
32
33
34
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# Author: Tomas Cassanelli
from setuptools import setup
setup(
name='pywpf',
version='0.1',
description='PyWPF - Waterfall-PCA folding',
author='Tomas Cassanelli',
author_email='tcassanelli@protonmail.com',
install_requires=[
'setuptools',
'numpy>=1.8',
'scipy>=0.15',
'astropy>=1.1',
'matplotlib>=2.0',
'fast_histogram',
# 'cython>=0.26.1'
],
setup_requires=['pytest-runner'], # Enables tests
tests_require=['pytest'],
# ext_modules=extensions,
packages=['pywpf'],
package_dir={
'pywpf': 'pywpf',
# 'pyoof.submodule': 'pypcaf/submodel',
},
include_package_data=True,
long_description='''
PyWPF - Waterfall-PCA folding
'''
)