From 8e728089b36128b3eebd64f63c75d101cf3e1740 Mon Sep 17 00:00:00 2001 From: apregier Date: Wed, 4 Sep 2019 15:30:28 -0500 Subject: [PATCH] New pypi just wants name of license in setup.py --- setup.py | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/setup.py b/setup.py index 51074c5..837133d 100644 --- a/setup.py +++ b/setup.py @@ -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()) @@ -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'],