forked from DannyVanpoucke/LSSVMlib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
36 lines (32 loc) · 1.13 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
import glob
from setuptools import setup, find_packages
#with open('README') as f:
# long_description = ''.join(f.readlines())
setup(
name='LSSVMlib',
version='2020.10.21',
description='Python LS-SVM class for regression conforming to the scikit-learn API.',
author='Danny E.P. Vanpoucke',
license='MIT',
keywords='LS-SVM, Least Squares Support Vector Machine, Regression, scikit-learn, machine learning, artificial intelligence',
url='https://github.com/DannyVanpoucke/LSSVMlib',
packages=find_packages(include=['LSSVMlib'],exclude=['examples', 'examples.*']),
zip_safe=False,
install_requires=[
'sklearn',
'numpy',
'pandas',
'scipy',
],
classifiers=[
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: MIT',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Topic :: Software Development :: Libraries',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
],
# setup_requires=['pytest-runner',],
# tests_require=['pytest',],
)