Skip to content

Commit

Permalink
changed license to MIT instead of loading the whole thing in setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewheusser committed Sep 6, 2017
1 parent 24e8bb2 commit 16f9a06
Showing 1 changed file with 2 additions and 9 deletions.
11 changes: 2 additions & 9 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,22 +2,15 @@

from setuptools import setup, find_packages


with open('README.md') as f:
readme = f.read()

with open('LICENSE') as f:
license = f.read()

setup(
name='quail',
version='0.1.2',
description='A python toolbox for analyzing and plotting free recall data',
long_description=readme,
long_description=' ',
author='Contextual Dynamics Lab',
author_email='[email protected]',
url='https://github.com/ContextLab/quail',
license=license,
license='MIT',
packages=find_packages(exclude=('tests', 'docs', 'paper')),
include_package_data=True,
install_requires=[
Expand Down

0 comments on commit 16f9a06

Please sign in to comment.