-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
executable file
·45 lines (42 loc) · 1.53 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
from setuptools import setup, find_packages
from glob import glob
__version__ = "0.0.1"
# add readme
with open('README.md', 'r') as f:
LONG_DESCRIPTION = f.read()
# add dependencies
with open('requirements.txt', 'r') as f:
INSTALL_REQUIRES = f.read().strip().split('\n')
INSTALL_REQUIRES.append("pyCP_APR @ https://github.com/lanl/pyCP_APR/tarball/main#egg=pyCP_APR-1.0.1")
INSTALL_REQUIRES.append("pyCP_ALS @ https://github.com/MaksimEkin/pyCP_ALS/tarball/main#egg=pyCP_ALS-0.0.1")
setup(
name='RFoT',
version=__version__,
author='Maksim E. Eren',
author_email='[email protected]',
description='Random Forest of Tensors (RFoT)',
long_description=LONG_DESCRIPTION,
long_description_content_type='text/markdown',
package_dir={'RFoT': 'RFoT/'},
platforms = ["Linux", "Mac", "Windows"],
include_package_data=True,
setup_requires=[
'joblib', 'matplotlib', 'numpy==1.19.2',
'pandas', 'scikit-learn', 'scipy', 'seaborn',
'tqdm', 'sparse'
],
url='https://github.com/MaksimEkin/RFoT',
dependency_links=[
'https://github.com/lanl/pyCP_APR/tarball/main#egg=pyCP_APR-1.0.1',
'https://github.com/MaksimEkin/pyCP_ALS/tarball/main#egg=pyCP_ALS-0.0.1',
],
packages=find_packages(),
classifiers=[
'Development Status :: 3 - Alpha',
'Programming Language :: Python :: 3.8.5',
'Topic :: Software Development :: Libraries'
],
python_requires='>=3.8.5',
install_requires=INSTALL_REQUIRES,
license='License :: BSD3 License',
)