Skip to content

Commit

Permalink
release: 0.1.7
Browse files Browse the repository at this point in the history
  • Loading branch information
hartym committed Oct 8, 2016
1 parent f43d7bf commit d27439f
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 7 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
# This file has been auto-generated.
# All changes will be lost, see Projectfile.
#
# Updated at 2016-10-08 06:22:14.028806
# Updated at 2016-10-08 06:42:34.863551

PYTHON ?= $(shell which python)
PYTHON_BASENAME ?= $(shell basename $(PYTHON))
PYTHON_REQUIREMENTS_FILE ?= requirements-optimized.txt
PYTHON_REQUIREMENTS_FILE ?= requirements-uvloop.txt
PYTHON_REQUIREMENTS_DEV_FILE ?= requirements-dev.txt
QUICK ?=
VIRTUAL_ENV ?= .virtualenv-$(PYTHON_BASENAME)
Expand Down
9 changes: 5 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ def read(filename, flt=None):

setup(
name = 'windflow',
description = ('Windflow is a toolkit for creating web applications faster with tornado and '
'asyncio.'),
description = ('Windflow is a rapid web application development toolkit using tornado, '
'asyncio and sqlalchemy.'),
license = 'Apache 2.0',
install_requires = ['Jinja2 ==2.8',
'SQLAlchemy ==1.1.1',
Expand All @@ -33,7 +33,8 @@ def read(filename, flt=None):
classifiers = read('classifiers.txt', tolines),
packages = find_packages(exclude=['ez_setup', 'example', 'test']),
include_package_data = True,
extras_require = {'dev': ['coverage >=4.2,<4.3',
extras_require = {'alembic': ['alembic ==0.8.8'],
'dev': ['coverage >=4.2,<4.3',
'honcho >=0.7,<0.8',
'mock >=2.0,<2.1',
'nose >=1.3,<1.4',
Expand All @@ -42,7 +43,7 @@ def read(filename, flt=None):
'pytest-cov >=2.3,<2.4',
'sphinx >=1.4,<1.5',
'sphinx_rtd_theme'],
'optimized': ['uvloop ==0.5.4']},
'uvloop': ['uvloop ==0.5.4']},
url = 'https://github.com/hartym/windflow',
download_url = 'https://github.com/hartym/windflow/archive/{version}.tar.gz'.format(version=version),
)
2 changes: 1 addition & 1 deletion version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.1.6
0.1.7

0 comments on commit d27439f

Please sign in to comment.