-
Notifications
You must be signed in to change notification settings - Fork 17
/
setup.py
50 lines (46 loc) · 1.54 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
'''pyMKL
'''
from distutils.core import setup
from setuptools import find_packages
CLASSIFIERS = [
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Mathematics',
'Topic :: Scientific/Engineering :: Physics',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'Operating System :: Unix',
'Operating System :: MacOS',
'Natural Language :: English',
]
with open('README.rst') as fp:
LONG_DESCRIPTION = ' '.join(fp.readlines())
setup(
name = 'pyMKL',
version = '0.0.3',
packages = find_packages(),
install_requires = ['numpy>=1.7',
'scipy>=0.13',
'future',
],
author = 'Dave Marchant',
author_email = '[email protected]',
description = 'Python wrapper of Intel MKL routines',
long_description = LONG_DESCRIPTION,
license = 'MIT',
keywords = 'sparse linear solver mkl pardiso',
url = 'https://github.com/dwfmarchant/pyMKL',
download_url = 'https://github.com/dwfmarchant/pyMKL/tarball/0.0.3',
classifiers = CLASSIFIERS,
platforms = ['Windows', 'Linux', 'Solaris', 'Mac OS-X', 'Unix'],
use_2to3 = False,
)