Skip to content

Commit c51ca77

Browse files
committed
Updates for version 1.0.
1 parent e489630 commit c51ca77

File tree

6 files changed

+13
-17
lines changed

6 files changed

+13
-17
lines changed

.travis.yml

-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
language: python
22
python:
3-
- "2.6"
43
- "2.7"
54
- "3.3"
65

LICENSE

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
Copyright (c) 2010 by Dan Jacob.
2+
Copyright (c) 2014 by Matthias Urlichs.
23

34
Some rights reserved.
45

README.rst

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
Flask-Script
22
==============
33

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

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

1010
Useful for creating command-line scripts, cronjobs etc outside your
@@ -15,4 +15,4 @@ Resources
1515
---------
1616

1717
- `Documentation <http://flask-script.readthedocs.org>`_
18-
- `Issue Tracker <http://github.com/techniq/flask-script/issues>`_
18+
- `Issue Tracker <http://github.com/smurfix/flask-script/issues>`_

docs/conf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@
9696

9797
html_theme_options = {
9898
'index_logo': 'flask-script.png',
99-
'github_fork': 'techniq/flask-script'
99+
'github_fork': 'smurfix/flask-script'
100100
}
101101
# Theme options are theme-specific and customize the look and feel of a theme
102102
# further. For a list of options available for each theme, see the

docs/index.rst

+2-3
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ Install with **pip** and **easy_install**::
3838

3939
or download the latest version from version control::
4040

41-
git clone https://github.com/techniq/flask-script.git
41+
git clone https://github.com/smurfix/flask-script.git
4242
cd flask-script
4343
python setup.py develop
4444

@@ -521,5 +521,4 @@ API
521521
.. autofunction:: prompt_choices
522522

523523
.. _Flask: http://flask.pocoo.org
524-
.. _GitHub: http://github.com/techniq/flask-script
525-
.. _argparse: http://pypi.python.org/pypi/argparse
524+
.. _GitHub: http://github.com/smurfix/flask-script

setup.py

+5-8
Original file line numberDiff line numberDiff line change
@@ -24,18 +24,16 @@
2424
pass
2525

2626
install_requires = ['Flask']
27-
if sys.version_info < (2, 7):
28-
install_requires += ['argparse']
2927

3028
setup(
3129
name='Flask-Script',
32-
version='0.6.7',
33-
url='http://github.com/techniq/flask-script',
30+
version='1.0.0',
31+
url='http://github.com/smurfix/flask-script',
3432
license='BSD',
3533
author='Dan Jacob',
3634
author_email='[email protected]',
37-
maintainer='Sean Lynch',
38-
maintainer_email='[email protected]',
35+
maintainer='Matthias Urlichs',
36+
maintainer_email='[email protected]',
3937
description='Scripting support for Flask',
4038
long_description=__doc__,
4139
packages=[
@@ -48,14 +46,13 @@
4846
],
4947
platforms='any',
5048
classifiers=[
51-
'Development Status :: 4 - Beta',
49+
'Development Status :: 5 - Production',
5250
'Environment :: Web Environment',
5351
'Intended Audience :: Developers',
5452
'License :: OSI Approved :: BSD License',
5553
'Operating System :: OS Independent',
5654
'Programming Language :: Python',
5755
'Programming Language :: Python :: 2',
58-
'Programming Language :: Python :: 2.6',
5956
'Programming Language :: Python :: 2.7',
6057
'Programming Language :: Python :: 3',
6158
'Programming Language :: Python :: 3.3',

0 commit comments

Comments
 (0)