From ef92ea9bf59bef8556fc5e8210750e452a905d43 Mon Sep 17 00:00:00 2001 From: Dominique Benielli <dominique.benielli@univ-amu.fr> Date: Tue, 17 Sep 2024 18:15:14 +0200 Subject: [PATCH] pypi tet upload --- MANIFEST.in | 1 + multimodal/__init__.py | 2 +- .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 188 bytes requirements.txt | 2 +- setup.py | 24 ++++++++++-------- 5 files changed, 17 insertions(+), 12 deletions(-) create mode 100644 multimodal/__pycache__/__init__.cpython-310.pyc diff --git a/MANIFEST.in b/MANIFEST.in index ece9ebb..fa7c519 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -3,3 +3,4 @@ include *.rst include doc/*.rst doc/*.py include multimodal/tests/*.py include examples/*.py examples/*.txt +include VERSION diff --git a/multimodal/__init__.py b/multimodal/__init__.py index 6c8e6b9..f102a9c 100644 --- a/multimodal/__init__.py +++ b/multimodal/__init__.py @@ -1 +1 @@ -__version__ = "0.0.0" +__version__ = "0.0.1" diff --git a/multimodal/__pycache__/__init__.cpython-310.pyc b/multimodal/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..dc08085254ded742119bbbf96b908ba23de31cee GIT binary patch literal 188 zcmd1j<>g{vU|_IX{xVIBfq~&Mh=Yt785kHG7#J9eIT#oiQW&BbQW%37G?}Vc4fG83 z4E;12Z*j-Rm!%dJXXfX{$FF24Vq#!`5Wl?iGxBp&^^;QbGE;MMGWCNC5|dN)1B&vq zQcH^Ui<2|6GfQ-HOLIyxbMsRYb8=D>i}LgleEs<N%)HE!_;|g7%3B;Zx%nxjIjMFa L_Y{Nd;9vj%D=sl0 literal 0 HcmV?d00001 diff --git a/requirements.txt b/requirements.txt index 57a71bf..46efeb6 100755 --- a/requirements.txt +++ b/requirements.txt @@ -1,3 +1,3 @@ cvxopt==1.3.0 coverage==4.5.3 -numpy +numpy==2.1.1 diff --git a/setup.py b/setup.py index 9458e18..60b3ddc 100644 --- a/setup.py +++ b/setup.py @@ -160,21 +160,24 @@ def setup_package(): 'and Baptiste Bauvin and Cécile Capponi and Hachem Kadri' author_email = 'contact.dev@lis-lab.fr' license = 'newBSD' - classifiers = [ + classifiers=[ 'Development Status :: 5 - Production/Stable', 'Intended Audience :: Science/Research', - 'License :: OSI Approved :: GNU Lesser General Public License' - ' v3 or later (LGPLv3+)', + 'License :: OSI Approved :: BSD License', 'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3.6', - 'Topic :: Scientific/Engineering', - 'Topic :: Scientific/Engineering :: Artificial Intelligence', - 'Operating System :: Microsoft :: Windows', - 'Operating System :: POSIX :: Linux', - 'Operating System :: MacOS'], - keywords = ['machine learning, supervised learning, classification, ' \ - 'ensemble methods, boosting, kernel'] + 'Programming Language :: Python :: 3.7', + 'Programming Language :: Python :: 3.8', + 'Programming Language :: Python :: 3.9', + 'Topic :: Scientific/Engineering', + 'Topic :: Scientific/Engineering :: Artificial Intelligence', + 'Operating System :: Microsoft :: Windows', + 'Operating System :: POSIX :: Linux', + 'Operating System :: MacOS :: MacOS X', + ] + keywords = ['machine learning, supervised learning, classification, ensemble methods, boosting, kernel'] packages = find_packages(exclude=['*.tests']) + setup_requires = ['numpy'] install_requires = ['scikit-learn==1.2.1', 'numpy', 'scipy', 'cvxopt' ] python_requires = '>=3.6' extras_require = { @@ -194,6 +197,7 @@ def setup_package(): classifiers=classifiers, keywords=keywords, packages=packages, + setup_requires=setup_requires, install_requires=install_requires, python_requires=python_requires, extras_require=extras_require, -- GitLab