Skip to content

Commit

Permalink
made long description in pypi markdown friendly
Browse files Browse the repository at this point in the history
  • Loading branch information
MiqG committed Aug 6, 2021
1 parent dda714b commit 4e7aec6
Showing 1 changed file with 5 additions and 10 deletions.
15 changes: 5 additions & 10 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,23 +8,18 @@
version="0.1.0",
packages=["leiden_clustering"],
python_requires=">=3.7",
package_data={"": ["LICENSE", "*.md","*.ipynb","*.yml"]},
install_requires=[
"numpy",
"scanpy",
"scikit-learn",
"umap",
"leidenalg"
],
package_data={"": ["LICENSE", "*.md", "*.ipynb", "*.yml"]},
install_requires=["numpy", "scanpy", "scikit-learn", "umap", "leidenalg"],
author="Miquel Anglada Girotto",
author_email="miquelangladagirotto@gmail.com",
description="Cluster your data matrix with the Leiden algorithm.",
long_description=readme,
long_description_content_type="text/markdown",
url="https://github.com/MiqG/leiden_clustering",
project_urls={"Issues": "https://github.com/MiqG/leiden_clustering/issues"},
classifiers=[
"License :: OSI Approved :: BSD License",
"Topic :: System :: Clustering"
"Topic :: System :: Clustering",
],
license="BSD 3-Clause License"
license="BSD 3-Clause License",
)

0 comments on commit 4e7aec6

Please sign in to comment.