-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
32 lines (30 loc) · 1.14 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
from setuptools import setup
setup(
name='kiprec',
version='1.0.0.dev1',
description='''kiprec is a Python package for course recommendations in the context of vocational
education. It contains multiple recommenders employing various Machine Learning
approaches.''',
url='',
author='Benjamin Paaßen, Jakub Kuzilek',
author_email='[email protected], [email protected]',
license='Apache',
packages=['kiprec'],
install_requires=['numpy','sentence_transformers'],
classifiers=[
'Development Status :: 1 - Planning',
'Intended Audience :: Science/Research',
'Intended Audience :: Education',
'License :: OSI Approved :: Apache Software License',
'Operating System :: POSIX :: Linux',
'Operating System :: MacOS',
'Operating System :: Microsoft :: Windows',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Private :: Do Not Upload'
],
keywords=''
)