Skip to content

Commit

Permalink
Adding long description. (#273)
Browse files Browse the repository at this point in the history
Adding two fields (long_description and long_description_content_type) to every setup.py file due to errors while publishing python wheels to pypi.
  • Loading branch information
sergey-serebryakov authored Sep 21, 2022
1 parent 184d232 commit ae5fba3
Show file tree
Hide file tree
Showing 7 changed files with 23 additions and 7 deletions.
6 changes: 5 additions & 1 deletion mlcube/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,5 +53,9 @@ def schemas():
extras_require={},
cmdclass={
'clean': Clean,
}
},
long_description="MLCube brings the concept of interchangeable parts to the world of machine learning models. "
"It is the shipping container that enables researchers and developers to easily share the "
"software that powers machine learning.",
long_description_content_type="text/markdown",
)
4 changes: 3 additions & 1 deletion runners/mlcube_docker/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,5 +51,7 @@ def schemas():
extras_require={},
cmdclass={
'clean': Clean,
}
},
long_description="MLCube Docker runner.",
long_description_content_type="text/markdown",
)
4 changes: 3 additions & 1 deletion runners/mlcube_gcp/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,5 +51,7 @@ def schemas():
extras_require={},
cmdclass={
'clean': Clean,
}
},
long_description="MLCube GCP runner.",
long_description_content_type="text/markdown",
)
4 changes: 3 additions & 1 deletion runners/mlcube_k8s/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,5 +51,7 @@ def schemas():
extras_require={},
cmdclass={
'clean': Clean,
}
},
long_description="MLCube Kubernetes runner.",
long_description_content_type="text/markdown",
)
4 changes: 3 additions & 1 deletion runners/mlcube_kubeflow/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,5 +51,7 @@ def schemas():
extras_require={},
cmdclass={
'clean': Clean,
}
},
long_description="MLCube KubeFlow runner.",
long_description_content_type="text/markdown",
)
4 changes: 3 additions & 1 deletion runners/mlcube_singularity/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,5 +51,7 @@ def schemas():
extras_require={},
cmdclass={
'clean': Clean,
}
},
long_description="MLCube Singularity runner.",
long_description_content_type="text/markdown",
)
4 changes: 3 additions & 1 deletion runners/mlcube_ssh/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,5 +51,7 @@ def schemas():
extras_require={},
cmdclass={
'clean': Clean,
}
},
long_description="MLCube SSH runner.",
long_description_content_type="text/markdown",
)

0 comments on commit ae5fba3

Please sign in to comment.