Skip to content

Commit

Permalink
Add long description argument.
Browse files Browse the repository at this point in the history
  • Loading branch information
manuel-calzolari committed Feb 26, 2019
1 parent e18314f commit b07f752
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -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',
Expand Down

0 comments on commit b07f752

Please sign in to comment.