forked from neurostatslab/tensortools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·47 lines (40 loc) · 1.19 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
from setuptools import setup, find_packages
NAME = 'tensortools'
DESCRIPTION = 'Tools for Tensor Decomposition.'
AUTHOR = 'Alex Williams and N. Benjamin Erichson'
EMAIL = '[email protected]'
VERSION = "0.3"
URL = 'https://github.com/ahwillia/tensortools'
LICENSE = 'MIT'
install_requires = [
'numpy',
'scipy',
'tqdm',
'munkres',
'numba'
]
tests_require = ['pytest', 'numpy', 'scipy', 'numba']
setup_requires = ['pytest-runner']
setup(
name=NAME,
version=VERSION,
description=DESCRIPTION,
url=URL,
author=AUTHOR,
author_email=EMAIL,
license=LICENSE,
install_requires=install_requires,
tests_require=tests_require,
setup_requires=setup_requires,
python_requires='>=3',
# See https://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Mathematics',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
keywords='tensor decomposition, canonical decomposition, parallel factors',
packages=find_packages(exclude=['tests*']),
)