Skip to content

Commit

Permalink
New pypi just wants name of license in setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
apregier committed Sep 4, 2019
1 parent a3a8cae commit 8e72808
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,6 @@
with open('README.md') as f:
readme = f.read()

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

with open('svtyper/version.py') as f:
exec(f.read())

Expand All @@ -16,9 +13,10 @@
version=__version__,
description='Bayesian genotyper for structural variants',
long_description=readme,
long_description_content_type='text/markdown',
author=__author__,
author_email='colbychiang@wustl.edu',
license=license,
license='MIT License',
url='https://github.com/hall-lab/svtyper',
setup_requires=['pytest-runner'],
tests_require=['pytest==4.6.4'],
Expand Down

0 comments on commit 8e72808

Please sign in to comment.