Skip to content

Commit

Permalink
Merge pull request #92 from Yelp/fix-long-desc-error
Browse files Browse the repository at this point in the history
Fix: 'long_description' error when publishing to PyPI
  • Loading branch information
Chandra158 authored Feb 12, 2024
2 parents 4c8368e + 029baa1 commit 0d5f1cd
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,16 @@ def local_file(path):
with open(local_file('fuzz_lightyear/version.py')) as f:
exec(f.read())

with open('README.md', encoding='utf-8') as f:
long_description = f.read()

setup(
name='fuzz_lightyear',
packages=find_packages(exclude=(['test*', 'tmp*'])),
version=VERSION,
description='Vulnerability Discovery through Stateful Swagger Fuzzing',
long_description=long_description,
long_description_content_type='text/markdown',
license='Copyright Yelp, Inc. 2019',
author=', '.join([
'Aaron Loo <aaronloo@yelp.com>',
Expand Down

0 comments on commit 0d5f1cd

Please sign in to comment.