Skip to content
Snippets Groups Projects
Commit ef92ea9b authored by Dominique Benielli's avatar Dominique Benielli
Browse files

pypi tet upload

parent 5c9693b0
No related branches found
No related tags found
No related merge requests found
Pipeline #14586 failed
...@@ -3,3 +3,4 @@ include *.rst ...@@ -3,3 +3,4 @@ include *.rst
include doc/*.rst doc/*.py include doc/*.rst doc/*.py
include multimodal/tests/*.py include multimodal/tests/*.py
include examples/*.py examples/*.txt include examples/*.py examples/*.txt
include VERSION
__version__ = "0.0.0" __version__ = "0.0.1"
File added
cvxopt==1.3.0 cvxopt==1.3.0
coverage==4.5.3 coverage==4.5.3
numpy numpy==2.1.1
...@@ -163,18 +163,21 @@ def setup_package(): ...@@ -163,18 +163,21 @@ def setup_package():
classifiers=[ classifiers=[
'Development Status :: 5 - Production/Stable', 'Development Status :: 5 - Production/Stable',
'Intended Audience :: Science/Research', 'Intended Audience :: Science/Research',
'License :: OSI Approved :: GNU Lesser General Public License' 'License :: OSI Approved :: BSD License',
' v3 or later (LGPLv3+)',
'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Topic :: Scientific/Engineering', 'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Artificial Intelligence', 'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Operating System :: Microsoft :: Windows', 'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX :: Linux', 'Operating System :: POSIX :: Linux',
'Operating System :: MacOS'], 'Operating System :: MacOS :: MacOS X',
keywords = ['machine learning, supervised learning, classification, ' \ ]
'ensemble methods, boosting, kernel'] keywords = ['machine learning, supervised learning, classification, ensemble methods, boosting, kernel']
packages = find_packages(exclude=['*.tests']) packages = find_packages(exclude=['*.tests'])
setup_requires = ['numpy']
install_requires = ['scikit-learn==1.2.1', 'numpy', 'scipy', 'cvxopt' ] install_requires = ['scikit-learn==1.2.1', 'numpy', 'scipy', 'cvxopt' ]
python_requires = '>=3.6' python_requires = '>=3.6'
extras_require = { extras_require = {
...@@ -194,6 +197,7 @@ def setup_package(): ...@@ -194,6 +197,7 @@ def setup_package():
classifiers=classifiers, classifiers=classifiers,
keywords=keywords, keywords=keywords,
packages=packages, packages=packages,
setup_requires=setup_requires,
install_requires=install_requires, install_requires=install_requires,
python_requires=python_requires, python_requires=python_requires,
extras_require=extras_require, extras_require=extras_require,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment