Skip to content

Commit

Permalink
Merge pull request #271 from YevhenLukomskyi/set-package-long-descrip…
Browse files Browse the repository at this point in the history
…tion

set package long description
  • Loading branch information
piotr1212 authored Jan 7, 2019
2 parents f71df67 + f749e97 commit ad48a5b
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
1 change: 1 addition & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
include README.md
exclude .* MANIFEST.in
global-exclude __pycache__
global-exclude *.py[co]
Expand Down
8 changes: 8 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,15 @@
#!/usr/bin/env python

import os
from glob import glob
from distutils.core import setup


def read(fname):
with open(os.path.join(os.path.dirname(__file__), fname)) as f:
return f.read()


setup(
name='whisper',
version='1.2.0',
Expand All @@ -12,6 +18,8 @@
author_email='[email protected]',
license='Apache Software License 2.0',
description='Fixed size round-robin style database',
long_description=read('README.md'),
long_description_content_type='text/markdown',
py_modules=['whisper'],
scripts=glob('bin/*') + glob('contrib/*'),
install_requires=['six'],
Expand Down

0 comments on commit ad48a5b

Please sign in to comment.