Skip to content

Commit

Permalink
add long description for PyPI
Browse files Browse the repository at this point in the history
  • Loading branch information
sterrettJD committed Sep 5, 2024
1 parent 5015bf9 commit 861804e
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,12 @@
from setuptools import setup, find_packages
from pathlib import Path

__author__ = 'lozuponelab'
__version__ = '0.6.4'

this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()

setup(
name="SCNIC",
version=__version__,
Expand All @@ -13,6 +17,8 @@
scripts=['scripts/SCNIC_analysis.py', 'scripts/module_enrichment.py'],
packages=find_packages(),
description="A tool for finding and summarizing modules of highly correlated observations in compositional data",
long_description=long_description,
long_description_content_type='text/markdown',
author="Lozupone Lab",
author_email='[email protected]',
url="https://github.com/lozuponelab/SCNIC/",
Expand Down

0 comments on commit 861804e

Please sign in to comment.