Skip to content

Commit

Permalink
setup: use readme.md as long description for PyPI (issue #7, not full…
Browse files Browse the repository at this point in the history
…y fixed yet)
  • Loading branch information
decalage2 committed Jun 16, 2019
1 parent 2d1b5a8 commit 6ad22ce
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,8 @@
name = "balbuzard"
version = '0.20'
desc = "Malware analysis tools to extract patterns of interest from files and crack obfuscation such as XOR"
long_desc = open('balbuzard/README.txt').read()
with open('README.md') as readme:
long_desc = readme.read()

author = "Philippe Lagadec"
author_email = "decalage at laposte dot net"
Expand Down Expand Up @@ -259,9 +260,10 @@ def main():
version=version,
description=desc,
long_description=long_desc,
long_description_content_type="text/markdown",
classifiers=classifiers,
author=author,
author_email=author_email,
# author_email=author_email,
url=url,
license=license,
## package_dir=package_dir,
Expand Down

0 comments on commit 6ad22ce

Please sign in to comment.