-
Notifications
You must be signed in to change notification settings - Fork 45
/
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, find_packages
import os
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name = 'MKLpy',
packages = find_packages(exclude=['build', 'docs', 'templates']),
version = '0.6',
install_requires=[
"numpy",
"torch",
"cvxopt",
"scikit-learn"
],
license = "GNU General Public License v3.0",
description = 'A package for Multiple Kernel Learning scikit-compliant',
author = 'Lauriola Ivano',
author_email = 'ivano.lauriola@phd.unipd.it',
url = 'https://github.com/IvanoLauriola/MKLpy',
download_url = 'https://github.com/IvanoLauriola/MKLpy',
keywords = ['kernel', 'MKL', 'learning', 'multiple kernel learning', 'EasyMKL','SVM','boolean kernels'],
classifiers = [
'Development Status :: 3 - Alpha',
'Programming Language :: Python :: 3.8',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Topic :: Scientific/Engineering :: Mathematics',
],
long_description = long_description,
long_description_content_type='text/markdown'
)