-
Notifications
You must be signed in to change notification settings - Fork 326
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #271 from YevhenLukomskyi/set-package-long-descrip…
…tion set package long description
- Loading branch information
Showing
2 changed files
with
9 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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', | ||
|
@@ -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'], | ||
|