forked from hottbox/hottbox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
39 lines (33 loc) · 1.13 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
from setuptools import setup, find_packages
__version__ = None
exec(open('hottbox/version.py').read())
def readme():
with open('README.rst') as f:
return f.read()
config = dict(
name='hottbox',
version=__version__,
packages=find_packages(exclude=['docs']),
url='https://github.com/hottbox/hottbox',
license='Apache License 2.0',
author='Ilya Kisil',
author_email='[email protected]',
description='Higher Order Tensors ToolBOX',
long_description=readme(),
classifiers=[
'Development Status :: 3 - Alpha',
'Topic :: Scientific/Engineering',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3'
],
keywords=['tensor decompositions', 'machine learning'],
install_requires=['numpy', 'scipy', 'pandas'],
include_package_data=True,
zip_safe=False
)
setup(**config)
print("\nWelcome to HOTTBOX!")
print("If any questions please visit documentation page https://hottbox.github.io")