Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in
Toggle navigation
F
flask-admin
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
JIRA
JIRA
Merge Requests
0
Merge Requests
0
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Python-Dev
flask-admin
Commits
d7b887cd
Commit
d7b887cd
authored
May 02, 2012
by
Serge S. Koval
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Updated setup.py and readme.
parent
e912cd28
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
18 additions
and
6 deletions
+18
-6
README.rst
README.rst
+3
-3
setup.py
setup.py
+15
-3
No files found.
README.rst
View file @
d7b887cd
...
...
@@ -19,12 +19,12 @@ Small example (Flask initialization omitted)::
admin.add_view(GalleryManager(name='Photos', category='Cats'))
admin.setup_app(app)
If you're looking for 0.x version of the Flask-Admin written by Andy Wilson, check `here <http
s://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
-------------
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
---------------
...
...
@@ -39,4 +39,4 @@ Some ideas were taken from the `Flask-Admin <https://github.com/wilsaj/flask-adm
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.
setup.py
View file @
d7b887cd
# Fix for older setuptools
import
multiprocessing
,
logging
import
multiprocessing
,
logging
,
os
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
(
name
=
'Flask-Admin'
,
version
=
'1.0.0'
,
url
=
'https://github.com/mrjoes/flask-
ext
admin/'
,
url
=
'https://github.com/mrjoes/flask-admin/'
,
license
=
'BSD'
,
author
=
'Serge S. Koval'
,
author_email
=
'serge.koval+github@gmail.com'
,
description
=
'Simple and extensible admin interface framework for Flask'
,
long_description
=
__doc__
,
long_description
=
desc
()
,
packages
=
find_packages
(),
include_package_data
=
True
,
zip_safe
=
False
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment