-
Notifications
You must be signed in to change notification settings - Fork 85
/
setup.py
24 lines (22 loc) · 869 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
from setuptools import find_packages, setup
setup(
name='openrec',
version='0.2.5',
packages=find_packages(exclude=("tutorials",)),
description="An open-source and modular library for neural network-inspired recommendation algorithms",
url="http://openrec.ai",
license='Apache 2.0',
author='Longqi Yang',
author_email='[email protected]',
install_requires=[
'tqdm>=4.15.0',
'numpy>=1.13.0',
'termcolor>=1.1.0'
],
classifiers=['Development Status :: 3 - Alpha',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: Scientific/Engineering :: Artificial Intelligence'],
)