File tree Expand file tree Collapse file tree 3 files changed +21
-4
lines changed Expand file tree Collapse file tree 3 files changed +21
-4
lines changed Original file line number Diff line number Diff line change
1
+ ### v2.0.0 (2018-01-17)
2
+
3
+ - Major restructuring of the codebase and the public API.
4
+ - Added a `` TextFormatter `` class with several helper methods for formatting
5
+ ASCII.
6
+ - Added a `` GopherSessionInterface `` class in order to support flask sessions.
7
+ - Added the ability to set the `` SERVER_NAME `` to an external URL.
8
+ - Included a `` demo/ `` directory with a complete example gopher server.
9
+ - Several minor bugfixes and improvements.
10
+
11
+
1
12
### v1.0.0 (2018-01-07)
2
13
3
14
- First official release
Original file line number Diff line number Diff line change 1
- __version__ = '1 .0.0'
1
+ __version__ = '2 .0.0'
Original file line number Diff line number Diff line change 4
4
5
5
A Flask extension to support the Gopher Protocol
6
6
"""
7
- from setuptools import setup
7
+ import codecs
8
+ import setuptools
8
9
from version import __version__ as version
9
10
10
11
11
- setup (
12
+ def long_description ():
13
+ with codecs .open ('README.md' , encoding = 'utf8' ) as f :
14
+ return f .read ()
15
+
16
+
17
+ setuptools .setup (
12
18
name = 'Flask-Gopher' ,
13
19
version = version ,
14
20
url = 'https://github.com/michael-lazar/flask-gopher' ,
15
21
license = 'GPL-3.0' ,
16
22
author = 'Michael Lazar' ,
17
23
author_email = 'lazar.michael22@gmail.com' ,
18
24
description = 'A Flask extension to support the Gopher Protocol' ,
19
- long_description = __doc__ ,
25
+ long_description = long_description () ,
20
26
packages = ['flask_gopher' ],
21
27
zip_safe = False ,
22
28
include_package_data = True ,
You can’t perform that action at this time.
0 commit comments