-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
38 lines (37 loc) · 1.05 KB
/
setup.py
File metadata and controls
38 lines (37 loc) · 1.05 KB
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
from setuptools import setup, find_packages
setup(
name="multiple_kernel_svm",
version="1.0.0",
description="An advanced SVM package with multiple kernel options and solvers, supporting Nyström approximation and online learning.",
author="vankoha",
author_email="ldvankhoa@gmail.com",
url="https://github.com/Koaha/multiple_kernel",
packages=find_packages(where="src"),
package_dir={"": "src"},
install_requires=[
"numpy>=1.18.0",
"scipy>=1.4.0",
"cvxpy>=1.1.7",
"scikit-learn>=0.24.0",
"tqdm>=4.41.0",
"pandas>=1.1.0"
],
extras_require={
"dev": [
"pytest>=6.0",
"flake8>=3.8.0",
"coverage>=5.3",
]
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires=">=3.6",
entry_points={
"console_scripts": [
"multiple_kernel_svm=src.coresvm.svm_wrapper:main",
]
},
)