-
Notifications
You must be signed in to change notification settings - Fork 11
/
setup.py
38 lines (35 loc) · 1.15 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
import os
from setuptools import setup, find_packages
DISTNAME = 'sparse_dot_mkl'
VERSION = '0.9.7'
DESCRIPTION = "Intel MKL wrapper for sparse matrix multiplication"
MAINTAINER = 'Chris Jackson'
MAINTAINER_EMAIL = '[email protected]'
URL = 'https://github.com/flatironinstitute/sparse_dot'
LICENSE = 'MIT'
# Description from README.md
base_dir = os.path.dirname(os.path.abspath(__file__))
long_description = "\n\n".join(
[open(os.path.join(base_dir, "README.md"), "r").read()]
)
setup(
name=DISTNAME,
version=VERSION,
description=DESCRIPTION,
long_description=long_description,
long_description_content_type="text/markdown",
url=URL,
author=MAINTAINER,
author_email=MAINTAINER_EMAIL,
license=LICENSE,
packages=find_packages(include=['sparse_dot_mkl', "sparse_dot_mkl.*"]),
install_requires=['numpy', 'scipy'],
tests_require=['pytest', 'coverage'],
zip_safe=True,
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Development Status :: 4 - Beta"
]
)