diff --git a/setup.py b/setup.py index 2aca3b3..7d744d0 100644 --- a/setup.py +++ b/setup.py @@ -1,9 +1,19 @@ from setuptools import setup, find_packages +from os import path +from io import open + +here = path.abspath(path.dirname(__file__)) + +# Get the long description from the README file +with open(path.join(here, 'README.md'), encoding='utf-8') as f: + long_description = f.read() setup( name='sklearn-genetic', version='0.1', description='Genetic feature selection module for scikit-learn', + long_description=long_description, + long_description_content_type='text/markdown', url='https://github.com/manuel-calzolari/sklearn-genetic', download_url='https://github.com/manuel-calzolari/sklearn-genetic/archive/0.1.tar.gz', author='Manuel Calzolari',