-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (27 loc) · 770 Bytes
/
setup.py
File metadata and controls
29 lines (27 loc) · 770 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
try:
from setuptools import setup
setup # quiet "redefinition of unused ..." warning from pyflakes
# arguments that distutils doesn't understand
setuptools_kwargs = {
'install_requires': [
'numpy',
'scipy'
],
'provides': ['rdc'],
}
except ImportError:
from distutils.core import setup
setuptools_kwargs = {}
setup(name='rdc',
version="1.0",
description=(
'Implements the Randomized Dependence Coefficient'
),
author='Gary Doran',
author_email='garydoranjr@gmail.com',
url='https://github.com/garydoranjr/rdc.git',
license="BSD compatable (see the LICENSE file)",
packages=['rdc'],
platforms=['unix'],
**setuptools_kwargs
)