Skip to content

Commit

Permalink
Include README in package description
Browse files Browse the repository at this point in the history
  • Loading branch information
sherbold committed Jan 18, 2020
1 parent 767354f commit 311836b
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,13 +1,22 @@
#!/usr/bin/env python

from setuptools import setup, find_packages
from os import path

import autorank

# read the contents of your README file

this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f:
long_description = f.read()

setup(
name='autorank',
version=autorank.__version__,
description='Automated ranking of populations in a repeated measures experiment, e.g., to rank different machine learning approaches tested on the same data.',
long_description=long_description,
long_description_content_type='text/markdown',
install_requires=['numpy', 'pandas', 'statsmodels', 'scipy', 'matplotlib'],
author='sherbold',
author_email='herbold@cs.uni.goettingen.de',
Expand Down

0 comments on commit 311836b

Please sign in to comment.