forked from junsupan/TensorPCA
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
32 lines (28 loc) · 839 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
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""
Created on Sat Sep 30 21:38:57 2023
@author: junsupan
"""
from setuptools import setup
setup(
name='TensorPCA',
version='0.1.0',
description='Tensor Principal Component Analysis',
url='https://github.com/junsupan/TensorPCA',
author='Junsu Pan',
author_email='[email protected]',
license='GNU General Public',
packages=['TensorPCA'],
install_requires=['scipy',
'numpy'
],
classifiers=[
'Intended Audience :: Science/Research',
'License :: OSI Approved :: GNU License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
],
include_package_data=True,
)