Skip to content
This repository has been archived by the owner on Mar 10, 2020. It is now read-only.

Commit

Permalink
Updates for version 1.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
smurfix committed Mar 3, 2014
1 parent e489630 commit c51ca77
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 17 deletions.
1 change: 0 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
language: python
python:
- "2.6"
- "2.7"
- "3.3"

Expand Down
1 change: 1 addition & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
Copyright (c) 2010 by Dan Jacob.
Copyright (c) 2014 by Matthias Urlichs.

Some rights reserved.

Expand Down
8 changes: 4 additions & 4 deletions README.rst
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
Flask-Script
==============

.. image:: https://travis-ci.org/techniq/flask-script.png?branch=master
:target: https://travis-ci.org/techniq/flask-script
.. image:: https://travis-ci.org/smurfix/flask-script.png?branch=v1.0
:target: https://travis-ci.org/smurfix/flask-script

A set of utilities for use with the Flask framework, which provide
A set of utilities for use with the Flask framework which provide
decorators, classes and helpers for writing your own script commands.

Useful for creating command-line scripts, cronjobs etc outside your
Expand All @@ -15,4 +15,4 @@ Resources
---------

- `Documentation <http://flask-script.readthedocs.org>`_
- `Issue Tracker <http://github.com/techniq/flask-script/issues>`_
- `Issue Tracker <http://github.com/smurfix/flask-script/issues>`_
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@

html_theme_options = {
'index_logo': 'flask-script.png',
'github_fork': 'techniq/flask-script'
'github_fork': 'smurfix/flask-script'
}
# Theme options are theme-specific and customize the look and feel of a theme
# further. For a list of options available for each theme, see the
Expand Down
5 changes: 2 additions & 3 deletions docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ Install with **pip** and **easy_install**::

or download the latest version from version control::

git clone https://github.com/techniq/flask-script.git
git clone https://github.com/smurfix/flask-script.git
cd flask-script
python setup.py develop

Expand Down Expand Up @@ -521,5 +521,4 @@ API
.. autofunction:: prompt_choices

.. _Flask: http://flask.pocoo.org
.. _GitHub: http://github.com/techniq/flask-script
.. _argparse: http://pypi.python.org/pypi/argparse
.. _GitHub: http://github.com/smurfix/flask-script
13 changes: 5 additions & 8 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,18 +24,16 @@
pass

install_requires = ['Flask']
if sys.version_info < (2, 7):
install_requires += ['argparse']

setup(
name='Flask-Script',
version='0.6.7',
url='http://github.com/techniq/flask-script',
version='1.0.0',
url='http://github.com/smurfix/flask-script',
license='BSD',
author='Dan Jacob',
author_email='[email protected]',
maintainer='Sean Lynch',
maintainer_email='[email protected]',
maintainer='Matthias Urlichs',
maintainer_email='[email protected]',
description='Scripting support for Flask',
long_description=__doc__,
packages=[
Expand All @@ -48,14 +46,13 @@
],
platforms='any',
classifiers=[
'Development Status :: 4 - Beta',
'Development Status :: 5 - Production',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
Expand Down

0 comments on commit c51ca77

Please sign in to comment.