-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
40 lines (37 loc) · 1.2 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
from setuptools import setup, find_packages
import os
# Long description from README_pypi.md
current_directory = os.path.dirname(os.path.abspath(__file__))
try:
with open(os.path.join(current_directory, 'README_pypi.md'), encoding='utf-8') as f:
long_description = f.read()
except Exception:
long_description = ''
setup(
name='multiviewstacking',
version='0.5.0',
description = 'Python implementation of the Multi-View Stacking algorithm.',
long_description = long_description,
long_description_content_type = 'text/markdown',
url='https://github.com/enriquegit/multiviewstacking',
author = 'Enrique Garcia-Ceja',
author_email = '[email protected]',
license='MIT',
keywords = ['multi-view stacking',
'machine learning',
'classification',
'sensor fusion'],
package_data={'multiviewstacking': ['data/*.*']},
packages=find_packages(),
python_requires='>=3.8',
install_requires=[
'pandas',
'numpy',
'scikit-learn >= 1.2.2',
],
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
)