-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adding README.md as pypi long_description
- Loading branch information
1 parent
b5a38b9
commit b36db2f
Showing
2 changed files
with
10 additions
and
2 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 |
---|---|---|
|
@@ -3,6 +3,8 @@ | |
|
||
|
||
from setuptools import setup, find_packages | ||
from os import path | ||
|
||
from tornado_eventsource import __version__ | ||
|
||
tests_require = [ | ||
|
@@ -11,11 +13,17 @@ | |
'mock' | ||
] | ||
|
||
|
||
this_directory = path.abspath(path.dirname(__file__)) | ||
with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f: | ||
long_description = f.read() | ||
|
||
setup( | ||
name='tornado_eventsource', | ||
version=__version__, | ||
description="EventSource handler for tornado", | ||
long_description="A simple EventSource handler for tornado", | ||
long_description=long_description, | ||
long_description_content_type='text/markdown', | ||
keywords='tornado EventSource event source', | ||
author='Guilherme Souza', | ||
author_email='[email protected]', | ||
|
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,4 +1,4 @@ | ||
#!/usr/bin/python | ||
# -*- coding: utf-8 -*- | ||
|
||
__version__ = '3.0.0rc1' | ||
__version__ = '3.0.0' |