Skip to content

Commit

Permalink
removing long description
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewheusser committed Sep 6, 2017
1 parent 07f2099 commit 24e8bb2
Showing 1 changed file with 3 additions and 14 deletions.
17 changes: 3 additions & 14 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,19 +3,8 @@
from setuptools import setup, find_packages


long_description=""" \
Quail is a Python package that facilitates analyses of behavioral data from memory experiments. (The current focus is on free recall experiments.) Key features include:
- Serial position curves (probability of recalling items presented at each presentation position)
- Probability of Nth recall curves (probability of recalling items at each presentation position as the Nth recall in the recall sequence)
- Lag-Conditional Response Probability curves (probability of transitioning between items in the recall sequence, as a function of their relative presentation positions)
- Clustering metrics (e.g. single-number summaries of how often participants transition from recalling a word to another related word, where "related" can be user-defined.)
- Many nice plotting functions
- Convenience functions for loading in data
- Automatically parse speech data (audio files) using wrappers for the Google Cloud Speech to Text API
For API documentation, examples and tutorials: http://cdl-quail.readthedocs.io/en/latest/
For sample Jupyter notebooks using the package: https://github.com/ContextLab/quail-example-notebooks
"""
with open('README.md') as f:
readme = f.read()

with open('LICENSE') as f:
license = f.read()
Expand All @@ -24,7 +13,7 @@
name='quail',
version='0.1.2',
description='A python toolbox for analyzing and plotting free recall data',
long_description=long_description,
long_description=readme,
author='Contextual Dynamics Lab',
author_email='contextualdynamics@gmail.com',
url='https://github.com/ContextLab/quail',
Expand Down

0 comments on commit 24e8bb2

Please sign in to comment.