-
Notifications
You must be signed in to change notification settings - Fork 91
/
setup.py
60 lines (46 loc) · 1.64 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
""""
Setup for Case Recommender
"""
# © 2019. Case Recommender (MIT License)
from distutils.core import setup
from setuptools import find_packages
from os import path
here = path.abspath(path.dirname(__file__))
__author__ = 'Arthur Fortes <[email protected]>'
# Get the long description from the README file
with open(path.join(here, 'README.rst'), encoding='utf-8') as f:
long_description = f.read()
# Get requiriments
REQUIRED_PACKAGES = [
'numpy',
'scipy',
'scikit-learn',
'pandas'
]
setup(
name='CaseRecommender',
packages=find_packages(),
version='1.1.1',
license='MIT License',
description='A recommender systems framework for Python',
long_description=long_description,
install_requires=REQUIRED_PACKAGES,
author='Arthur Fortes <[email protected]>',
author_email='[email protected]',
url='https://github.com/caserec/CaseRecommender',
download_url='https://github.com/caserec/CaseRecommender/archive/master.zip',
keywords=['recommender systems', 'framework', 'collaborative filtering', 'content-based filtering',
'recommendation'],
classifiers=[
# Indicate who your project is intended for
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
],
)