From 135ac2e2ebad3417b284c1b3f1cfa3eebc589af7 Mon Sep 17 00:00:00 2001 From: Wtower Date: Wed, 25 Nov 2015 15:58:39 +0200 Subject: [PATCH] Added project to pypi --- README.rst | 31 ++++++++++++----------------- admin_bootstrapped_plus/__init__.py | 2 +- setup.py | 2 +- 3 files changed, 15 insertions(+), 20 deletions(-) diff --git a/README.rst b/README.rst index e252e2f..1f06d52 100644 --- a/README.rst +++ b/README.rst @@ -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 `_ for screenshot. Dependencies ------------ @@ -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/ diff --git a/admin_bootstrapped_plus/__init__.py b/admin_bootstrapped_plus/__init__.py index 2efb1c0..061c097 100644 --- a/admin_bootstrapped_plus/__init__.py +++ b/admin_bootstrapped_plus/__init__.py @@ -1,4 +1,4 @@ -__version__ = '0.1.0' +__version__ = '0.1.1' __author__ = 'George Karakostas' __copyright__ = 'Copyright 2015, George Karakostas' __licence__ = 'BSD-3' diff --git a/setup.py b/setup.py index 25c35de..37a4a10 100644 --- a/setup.py +++ b/setup.py @@ -18,7 +18,7 @@ author_email='info@9-dev.com', license='BSD-3 License', keywords='admin theme', - packages=['admin_bootstrapped_plus', 'docs'], + packages=['admin_bootstrapped_plus'], include_package_data=True, install_requires=[ 'Django',