Skip to content

Commit

Permalink
Merge pull request #1 from Wtower/pypi
Browse files Browse the repository at this point in the history
Added project to pypi
  • Loading branch information
Wtower committed Nov 25, 2015
2 parents e6fee52 + 135ac2e commit 2fa3074
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 20 deletions.
31 changes: 13 additions & 18 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ as provided by the required app

The vertical sidebar provides a stack of links to all models, grouped by the installed apps.

Detailed documentation soon to be published.
See `Django 9cms <https://github.com/Wtower/django-ninecms>`_ for screenshot.

Dependencies
------------
Expand All @@ -23,33 +23,28 @@ Quick how-to

This is a quick guide on how to use it.

1. Install django-admin-bootstrapped-plus
1. Install django-admin-bootstrapped-plus::

- Download source and place in project root
- *Soon available as python package*
$ pip install django-admin-bootstrapped-plus

2. Dependencies:
- or download source and place in project root

- Add the following to the ``requirements.txt`` file::
2. Dependencies (resolved by pip)::

Django==1.8.7
django-admin-bootstrapped==2.5.6

- Then run::

$ sudo pip install -r requirements.txt
Django==1.8.7
django-admin-bootstrapped==2.5.6

3. Settings

- You need to install the app in ``INSTALLED_APPS`` before admin_bootstrapped and before admin,
so that Django loads the templates properly::

INSTALLED_APPS = (
'admin_bootstrapped_plus',
'django_admin_bootstrapped',
'django.contrib.admin',
# ...
)
INSTALLED_APPS = (
'admin_bootstrapped_plus',
'django_admin_bootstrapped',
'django.contrib.admin',
# ...
)

4. Start the development server and visit http://127.0.0.1:8000/admin/

Expand Down
2 changes: 1 addition & 1 deletion admin_bootstrapped_plus/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = '0.1.0'
__version__ = '0.1.1'
__author__ = 'George Karakostas'
__copyright__ = 'Copyright 2015, George Karakostas'
__licence__ = 'BSD-3'
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
author_email='[email protected]',
license='BSD-3 License',
keywords='admin theme',
packages=['admin_bootstrapped_plus', 'docs'],
packages=['admin_bootstrapped_plus'],
include_package_data=True,
install_requires=[
'Django',
Expand Down

0 comments on commit 2fa3074

Please sign in to comment.