forked from MaksimEkin/pyCP_ALS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·37 lines (34 loc) · 1.06 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
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')
setup(
name='pyCP_ALS',
version=__version__,
author='Maksim E. Eren',
author_email='[email protected]',
description='Python CP-ALS',
long_description=LONG_DESCRIPTION,
long_description_content_type='text/markdown',
package_dir={'pyCP_ALS': 'pyCP_ALS'},
platforms = ["Linux", "Mac", "Windows"],
include_package_data=True,
setup_requires=[
'numpy==1.19.2', 'tqdm', 'sparse', 'scipy'
],
url='https://github.com/MaksimEkin/pyCP_ALS',
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',
)