-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
27 lines (26 loc) · 917 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
25
26
27
from setuptools import setup, find_packages
#from distutils.core import setup
setup(
name = 'prl',
packages = find_packages(exclude=['build', '_docs', 'templates']),
version = '0.94b',
install_requires=[
"numpy",
"scipy",
"cvxopt",
"sklearn"
],
license = "MIT",
description = '[P]reference and [R]ule [L]earning algorithm implementation',
author = 'Mirko Polato',
author_email = '[email protected]',
url = 'https://github.com/makgyver/PRL',
download_url = 'https://github.com/makgyver/PRL',
keywords = ['preference-learning', 'game-theory', 'machine-learning', 'algorithm'],
classifiers = [
'Development Status :: 4 - Beta',
'Programming Language :: Python :: 3.6',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'License :: OSI Approved :: MIT License',
]
)