Skip to content

Commit 67bbbe7

Browse files
committed
Update in one more place.
1 parent a733eeb commit 67bbbe7

File tree

2 files changed

+8
-9
lines changed

2 files changed

+8
-9
lines changed

flask_selfdoc/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
__author__ = 'arnaud'
22

3-
from flask.ext.autodoc.autodoc import Autodoc
3+
from flask.ext.selfdoc.autodoc import Autodoc

setup.py

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
"""
2-
Flask-Autodoc
2+
Flask-Selfdoc
33
-------------
44
5-
Flask autodoc automatically creates an online documentation for your flask app.
5+
Flask selfdoc automatically creates an online documentation for your flask app.
66
"""
77
from setuptools import setup
88

@@ -13,19 +13,18 @@ def readme():
1313

1414

1515
setup(
16-
name='Flask-Autodoc',
17-
version='0.1.2',
18-
url='http://github.com/acoomans/flask-autodoc',
16+
name='Flask-Selfdoc',
17+
version='0.2',
18+
url='http://github.com/jwg4/flask-selfdoc',
1919
license='MIT',
2020
author='Arnaud Coomans',
21-
author_email='arnaud.coomans@gmail.com',
2221
description='Documentation generator for flask',
2322
long_description=readme(),
2423
# py_modules=['flask_autodoc'],
2524
# if you would be using a package instead use packages instead
2625
# of py_modules:
27-
packages=['flask_autodoc'],
28-
package_data={'flask_autodoc': ['templates/autodoc_default.html']},
26+
packages=['flask_selfdoc'],
27+
package_data={'flask_selfdoc': ['templates/autodoc_default.html']},
2928
zip_safe=False,
3029
include_package_data=True,
3130
platforms='any',

0 commit comments

Comments
 (0)