diff --git a/setup.py b/setup.py index 7358a89..a9cf385 100644 --- a/setup.py +++ b/setup.py @@ -4,12 +4,14 @@ from pathlib import Path this_directory = Path(__file__).parent +long_description = (this_directory / "README.rst").read_text() setup( name='CanDI', description='A cancer data integration package', version=version, packages=find_packages(), + long_description=long_description, python_requires='>=3.9', install_requires=[ "pandas", @@ -28,4 +30,4 @@ 'License :: OSI Approved :: MIT License', 'Programming Language :: Python :: 3', ], -) \ No newline at end of file +)