8000 bump ver · jstacoder/flask-xxl@be12964 · GitHub
[go: up one dir, main page]

Skip to content 8000

Commit be12964

Browse files
committed
bump ver
1 parent d677d4e commit be12964

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
## Flask-XXL
22
#### - A best practices approach to creating larger web apps with Flask, in an attempt to make Flask feel like it is as capable, if not more, than __Django__.
33

4-
[![PyPI version](https://badge.fury.io/py/flask-xxl.svg)](https://badge.fury.io/py/flask-xxl)
4+
[![PyPI version](https://badge.fury.io/py/flaskxxl.svg)](https://badge.fury.io/py/flaskxxl)
55

66
[![Get help on Codementor](https://cdn.codementor.io/badges/get_help_github.svg)](https://www.codementor.io/jstacoder)
77

setup.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
VERSION = '0,10,4'
1+
VERSION = '0,10,8'
22
import os
33
from setuptools import setup, find_packages,findall
44
from glob import glob
55

66
def get_description():
7-
return open('README.txt','r').read()
7+
return open('README.md','r').read()
88

99
def get_version():
1010
l,m,s = VERSION.split(',')
@@ -33,6 +33,7 @@ def get_pkg_data():
3333
author_email='kyle@level2designs.com',
3434
description='quick way to design large flask projects',
3535
long_description=get_description(),
36+
long_description_content_type='text/markdown',
3637
packages=['flask_xxl'],
3738
package_data = {'':findall('flask_xxl')}, #['*.bob','*.html','*.js','*.css','*',]},
3839
install_requires=[

0 commit comments

Comments
 (0)
0