-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (26 loc) · 890 Bytes
/
setup.py
File metadata and controls
29 lines (26 loc) · 890 Bytes
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
from setuptools import setup, find_packages
setup(
name = 'tiny_elephant',
packages = find_packages(),
version = '0.1.3',
description = 'In memory based collaborative filtering',
author = 'Hyeon-Mook Jerry Choi',
author_email = 'chm073@gmail.com',
url = 'https://github.com/kyunooh/tiny_elephant',
download_url = 'https://github.com/kyunooh/tiny_elephant/archive/v0.1.3.tar.gz',
keywords = ['clustering', 'collaborative filtering', 'redis', 'in memory based'],
python_require = '>=3.4',
zip_safe = False,
install_requires=[
'python-snappy',
'redis',
'datasketch',
'simplejson'
],
classifiers = [
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7'
]
)