-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
fa5e5e8
commit e3b2740
Showing
3 changed files
with
21 additions
and
4 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,14 @@ | ||
### v2.0.0 (2018-01-17) | ||
|
||
- Major restructuring of the codebase and the public API. | ||
- Added a ``TextFormatter`` class with several helper methods for formatting | ||
ASCII. | ||
- Added a ``GopherSessionInterface`` class in order to support flask sessions. | ||
- Added the ability to set the ``SERVER_NAME`` to an external URL. | ||
- Included a ``demo/`` directory with a complete example gopher server. | ||
- Several minor bugfixes and improvements. | ||
|
||
|
||
### v1.0.0 (2018-01-07) | ||
|
||
- First official release |
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 +1 @@ | ||
__version__ = '1.0.0' | ||
__version__ = '2.0.0' |
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 |
---|---|---|
|
@@ -4,19 +4,25 @@ | |
A Flask extension to support the Gopher Protocol | ||
""" | ||
from setuptools import setup | ||
import codecs | ||
import setuptools | ||
from version import __version__ as version | ||
|
||
|
||
setup( | ||
def long_description(): | ||
with codecs.open('README.md', encoding='utf8') as f: | ||
return f.read() | ||
|
||
|
||
setuptools.setup( | ||
name='Flask-Gopher', | ||
version=version, | ||
url='https://github.com/michael-lazar/flask-gopher', | ||
license='GPL-3.0', | ||
author='Michael Lazar', | ||
author_email='[email protected]', | ||
description='A Flask extension to support the Gopher Protocol', | ||
long_description=__doc__, | ||
long_description=long_description(), | ||
packages=['flask_gopher'], | ||
zip_safe=False, | ||
include_package_data=True, | ||
|