-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (21 loc) · 722 Bytes
/
setup.py
File metadata and controls
25 lines (21 loc) · 722 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
#!/usr/bin/env python
import sys
from os.path import abspath, join, split
from setuptools import setup
sys.path.insert(0, join(split(abspath(__file__))[0], 'lib'))
from mrmr import __version__ as _mrmr_version
setup(name='mrmr',
version=_mrmr_version,
description='minimum redundancy maximum relevance feature selection',
author='N Lance Hepler',
author_email='nlhepler@gmail.com',
url='http://github.com/nlhepler/mrmr',
license='GNU GPL version 2',
packages=['mrmr', 'mrmr._kde'],
package_dir={
'mrmr': 'lib/mrmr',
'mrmr._kde': 'lib/mrmr/_kde'
},
scripts=['scripts/mrmr'],
requires=['fakemp (>=0.9.1)', 'numpy (>=1.6)']
)