Skip to content

Commit

Permalink
Fix: 'long_description' error when publishing to PyPI
Browse files Browse the repository at this point in the history
  • Loading branch information
Chandra158 committed Feb 12, 2024
1 parent 4c8368e commit 029baa1
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 <[email protected]>',
Expand Down

0 comments on commit 029baa1

Please sign in to comment.