-
Notifications
You must be signed in to change notification settings - Fork 16
/
setup.py
59 lines (54 loc) · 1.69 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
#!/usr/bin/env python2
# coding=utf-8
# Authors: Santi Villalba <[email protected]>
# Licence: BSD 3 clause
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(
name='pyopy',
license='BSD 3 clause',
description='PYthon->Octave->PYthon: Tools to pythonize matlab/octave libraries',
version='0.1.1-dev',
url='https://github.com/strawlab/pyopy',
author='Santi Villalba',
author_email='[email protected]',
packages=['pyopy',
'pyopy.minioct2py',
'pyopy.externals',
'pyopy.externals.ompc',
'pyopy.tests',
'pyopy.hctsa',
'pyopy.hctsa.tests'],
entry_points={
'console_scripts': [
'hctsa-cli = pyopy.hctsa.hctsa_cli:main',
]
},
classifiers=[
'Intended Audience :: Science/Research',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python',
'Topic :: Software Development',
'Topic :: Scientific/Engineering',
'Operating System :: MacOS',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 2.7',
],
requires=['numpy',
'scipy',
'pandas',
'joblib',
'argh',
'whatami',
'lockfile'],
extras_require={
'oct2py': ['oct2py>=3.1.0'],
'pymatbridge': ['pymatbridge>=0.4.3'],
'matlab_wrapper': ['matlab_wrapper>=0.9.6'],
'mathworks': [], # matlab python engine (http://www.mathworks.com/help/matlab/matlab-engine-for-python.html)
},
tests_require=['pytest'],
)