-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
35 lines (32 loc) · 1.03 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
31
32
33
34
35
#!/usr/bin/env python
from distutils.core import setup,Command
class PyTest(Command):
user_options = []
def initialize_options(self):
pass
def finalize_options(self):
pass
def run(self):
import sys,subprocess
errno = subprocess.call([sys.executable,'tests/runtests.py'])
raise SystemExit(errno)
setup(name='pyica',
version='1.1.0',
description='Pure Python Package for FastICA',
author='Kevin Brown',
author_email='[email protected]',
url='https://github.com/thelahunginjeet/pyica',
packages=['pyica'],
package_dir = {'pyica': ''},
package_data = {'pyica' : ['tests/*.py']},
cmdclass = {'test': PyTest},
license='BSD-3',
classifiers=[
'License :: OSI Approved :: BSD-3 License',
'Intended Audience :: Developers',
'Intended Audience :: Scientists',
'Programming Language :: Python',
'Topic :: Blind Source Separation',
'Topic :: Signal Processing',
],
)