Skip to content

Commit 16f9a06

Browse files
committed
changed license to MIT instead of loading the whole thing in setup.py
1 parent 24e8bb2 commit 16f9a06

File tree

1 file changed

+2
-9
lines changed

1 file changed

+2
-9
lines changed

setup.py

Lines changed: 2 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2,22 +2,15 @@
22

33
from setuptools import setup, find_packages
44

5-
6-
with open('README.md') as f:
7-
readme = f.read()
8-
9-
with open('LICENSE') as f:
10-
license = f.read()
11-
125
setup(
136
name='quail',
147
version='0.1.2',
158
description='A python toolbox for analyzing and plotting free recall data',
16-
long_description=readme,
9+
long_description=' ',
1710
author='Contextual Dynamics Lab',
1811
author_email='contextualdynamics@gmail.com',
1912
url='https://github.com/ContextLab/quail',
20-
license=license,
13+
license='MIT',
2114
packages=find_packages(exclude=('tests', 'docs', 'paper')),
2215
include_package_data=True,
2316
install_requires=[

0 commit comments

Comments
 (0)