-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (25 loc) · 802 Bytes
/
setup.py
File metadata and controls
31 lines (25 loc) · 802 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
28
29
from setuptools import setup, find_packages
def read_me():
with open('README.md') as f:
out = f.read()
return out
setup(
name='GPro',
version='1.0.5',
url='https://github.com/chariff/GPro',
packages=find_packages(),
author='Chariff Alkhassim',
author_email='chariff.alkhassim@gmail.com',
description='Preference Learning with Gaussian Processes.',
# long_description='Python implementation of a probabilistic kernel approach '
# 'to preference learning based on Gaussian processes.',
long_description=read_me(),
long_description_content_type="text/markdown",
include_package_data=True,
install_requires=[
"numpy >= 1.9.0",
"scipy > 1.4.0",
"pandas >= 0.24.0"
],
license='MIT',
)