Skip to content

Commit

Permalink
Fix packaging
Browse files Browse the repository at this point in the history
  • Loading branch information
tysmith committed May 12, 2020
1 parent c20eb46 commit 0400eff
Showing 1 changed file with 9 additions and 6 deletions.
15 changes: 9 additions & 6 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@


if __name__ == '__main__':
with open(pathjoin(dirname(__file__), "README.md"), "r") as infp:
with open(pathjoin(dirname(__file__), 'README.md'), 'r') as infp:
README = infp.read()
setup(
classifiers=[
Expand Down Expand Up @@ -52,20 +52,23 @@
'psutil',
'six'
],
keywords="firefox fuzz fuzzing test testing",
keywords='firefox framework fuzz fuzzing test testing',
license='MPL 2.0',
long_description=README,
long_description_content_type="text/markdown",
maintainer="Mozilla Fuzzing Team",
maintainer_email="[email protected]",
long_description_content_type='text/markdown',
maintainer='Mozilla Fuzzing Team',
maintainer_email='[email protected]',
name='grizzly-framework',
packages=[
'grizzly',
'grizzly.adapters',
'grizzly.adapters.NoOpAdapter',
'grizzly.common',
'grizzly.reduce',
'grizzly.replay',
'grizzly.target',
'loki',
'sapphire',
],
url='https://github.com/MozillaSecurity/grizzly',
version='0.9.1')
version='0.9.2')

0 comments on commit 0400eff

Please sign in to comment.