Skip to content

Commit

Permalink
bump ver
Browse files Browse the repository at this point in the history
  • Loading branch information
jstacoder committed Jun 26, 2020
1 parent d677d4e commit be12964
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
## Flask-XXL
#### - 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__.

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

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

Expand Down
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
VERSION = '0,10,4'
VERSION = '0,10,8'
import os
from setuptools import setup, find_packages,findall
from glob import glob

def get_description():
return open('README.txt','r').read()
return open('README.md','r').read()

def get_version():
l,m,s = VERSION.split(',')
Expand Down Expand Up @@ -33,6 +33,7 @@ def get_pkg_data():
author_email='[email protected]',
description='quick way to design large flask projects',
long_description=get_description(),
long_description_content_type='text/markdown',
packages=['flask_xxl'],
package_data = {'':findall('flask_xxl')}, #['*.bob','*.html','*.js','*.css','*',]},
install_requires=[
Expand Down

0 comments on commit be12964

Please sign in to comment.