-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
43 lines (37 loc) · 1.41 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
33
34
35
36
37
38
39
40
41
42
43
from setuptools import setup,find_packages
from distutils.core import setup
import pathlib
here = pathlib.Path(__file__).parent.resolve()
# Get the long description from the README file
long_description = (here / 'README.md').read_text(encoding='utf-8')
setup(
name='orsvm',
version='1.0.5',
description='SVM with Orthogonal Kernel functions of fractional order and normal',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/AmirHoseinHadian/orsvm',
download_url = 'https://github.com/AmirHoseinHadian/orsvm/archive/refs/tags/v1.0.5.tar.gz',
author='Amir Hossein Hadian Rasenan, Sherwin Nedaei Janbesaraei, Amirreza Azmoon, Mohammad Akhavan, Shakiba Amirshahi',
author_email='amir.h.hadian@gmail.com',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
],
keywords='SVM, Orthogonal Polynomials, Classification, Chebyshev, Legendre, Gegenbauer, Jacobi',
packages=['orsvm'],
install_requires=[
'Cython',
'cvxopt',
'numpy',
'pandas',
'scikit_learn',
'sphinx',
'ipykernel',
'nbsphinx'
],
python_requires='>=3.8',
)