Commit d7b887cd authored by Serge S. Koval's avatar Serge S. Koval

Updated setup.py and readme.

parent e912cd28
...@@ -19,12 +19,12 @@ Small example (Flask initialization omitted):: ...@@ -19,12 +19,12 @@ Small example (Flask initialization omitted)::
admin.add_view(GalleryManager(name='Photos', category='Cats')) admin.add_view(GalleryManager(name='Photos', category='Cats'))
admin.setup_app(app) admin.setup_app(app)
If you're looking for 0.x version of the Flask-Admin written by Andy Wilson, check `here <https://github.com/wilsaj/flask-admin>`_ If you're looking for 0.x version of the Flask-Admin written by Andy Wilson, check `here <http://github.com/wilsaj/flask-admin>`_.
Documentation Documentation
------------- -------------
Flask-Admin is extensively documented, you can find documentation `here <http://readthedocs.org/docs/flask-admin>`_. Flask-Admin is extensively documented, you can find `documentation here <http://readthedocs.org/docs/flask-admin>`_.
3rd Party Stuff 3rd Party Stuff
--------------- ---------------
...@@ -39,4 +39,4 @@ Some ideas were taken from the `Flask-Admin <https://github.com/wilsaj/flask-adm ...@@ -39,4 +39,4 @@ Some ideas were taken from the `Flask-Admin <https://github.com/wilsaj/flask-adm
Examples Examples
-------- --------
Library comes with few examples, you can find them in `examples` directory. Library comes with few examples, you can find them in _examples_ directory.
# Fix for older setuptools # Fix for older setuptools
import multiprocessing, logging import multiprocessing, logging, os
from setuptools import setup, find_packages from setuptools import setup, find_packages
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
def desc():
info = read('README.rst')
try:
return info + '\n\n' + read('doc/changelog.rst')
except IOError:
return info
setup( setup(
name='Flask-Admin', name='Flask-Admin',
version='1.0.0', version='1.0.0',
url='https://github.com/mrjoes/flask-extadmin/', url='https://github.com/mrjoes/flask-admin/',
license='BSD', license='BSD',
author='Serge S. Koval', author='Serge S. Koval',
author_email='serge.koval+github@gmail.com', author_email='serge.koval+github@gmail.com',
description='Simple and extensible admin interface framework for Flask', description='Simple and extensible admin interface framework for Flask',
long_description=__doc__, long_description=desc(),
packages=find_packages(), packages=find_packages(),
include_package_data=True, include_package_data=True,
zip_safe=False, zip_safe=False,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment