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

new version for pypi

parent 3bb826fb
No related branches found
No related tags found
No related merge requests found
Pipeline #14652 passed
__version__ = "0.0.1" __version__ = "0.0.2"
No preview for this file type
...@@ -121,7 +121,6 @@ class clean(_clean): ...@@ -121,7 +121,6 @@ class clean(_clean):
if dirname == '__pycache__': if dirname == '__pycache__':
shutil.rmtree(os.path.join(dirpath, dirname)) shutil.rmtree(os.path.join(dirpath, dirname))
############################## ##############################
# Custom sdist command # Custom sdist command
############################## ##############################
...@@ -148,6 +147,8 @@ def setup_package(): ...@@ -148,6 +147,8 @@ def setup_package():
set_version(multimodal_dir, version) set_version(multimodal_dir, version)
description = 'A scikit-learn compatible package for multimodal Classifiers' description = 'A scikit-learn compatible package for multimodal Classifiers'
here = os.path.abspath(os.path.dirname(__file__)) here = os.path.abspath(os.path.dirname(__file__))
open('README.rst').read(), # Or 'README.rst', depending on your format
long_description_content_type = 'text/x-rst'
with open(os.path.join(here, 'README.rst'), encoding='utf-8') as readme: with open(os.path.join(here, 'README.rst'), encoding='utf-8') as readme:
long_description = readme.read() long_description = readme.read()
group = 'dev' group = 'dev'
...@@ -189,6 +190,7 @@ def setup_package(): ...@@ -189,6 +190,7 @@ def setup_package():
version=version, version=version,
description=description, description=description,
long_description=long_description, long_description=long_description,
long_description_content_type=long_description_content_type,
url=url, url=url,
project_urls=project_urls, project_urls=project_urls,
author=author, author=author,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment