forked from tensorly/tensorly
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·34 lines (29 loc) · 926 Bytes
/
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
try:
from setuptools import setup, find_packages
except ImportError:
from distutils.core import setup, find_packages
import tensorly
version = tensorly.__version__
def readme():
with open('README.rst') as f:
return f.read()
config = {
'name': 'tensorly',
'packages': find_packages(exclude=['doc']),
'description': 'Tensor learning in Python.',
'long_description': readme(),
'author': 'Jean Kossaifi',
'author_email': 'jean.kossaifi@gmail.com',
'version': version,
'url': 'https://github.com/tensorly/tensorly',
'download_url': 'https://github.com/tensorly/tensorly/tarball/' + version,
'install_requires': ['numpy', 'scipy'],
'license': 'Modified BSD',
'scripts': [],
'classifiers': [
'Topic :: Scientific/Engineering',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 3'
],
}
setup(**config)