Skip to content

Commit

Permalink
Distribution is now working.
Browse files Browse the repository at this point in the history
  • Loading branch information
Nicolas Noé committed Aug 9, 2012
1 parent 2261ddd commit 5468bcc
Show file tree
Hide file tree
Showing 5 changed files with 28 additions and 5 deletions.
File renamed without changes.
3 changes: 3 additions & 0 deletions MANIFEST.in
@@ -0,0 +1,3 @@
include LICENSE.txt
include MANIFEST.in
include README.rst
10 changes: 7 additions & 3 deletions README.rst
Expand Up @@ -10,9 +10,13 @@ Tiny tutorial
Install the app in your Django project
--------------------------------------

This should be as simple as copying the ‘django\_nuages\_tag’ directory
in your project and adding ‘django\_nuages\_tag’ to your
``INSTALLED_APPS`` settings. Pip deployment will be available soon.
This should be as simple as

::

pip install django-nuages-tag

and adding ‘django\_nuages\_tag’ to your ``INSTALLED_APPS`` settings.

Example usage
-------------
Expand Down
3 changes: 1 addition & 2 deletions TODO.rst
@@ -1,8 +1,7 @@
TODO
====

- Re-read and improve the documentation (README.md)
- Make an easy to install Python Package
- Re-read and improve the documentation (README.rst)
- Complete test coverage
- Make sure the second parameter (count) can be either a method or an
attribute
Expand Down
17 changes: 17 additions & 0 deletions setup.py
@@ -0,0 +1,17 @@
# -*- coding: utf-8 -*-
from distutils.core import setup
from setuptools import find_packages

setup(
name='django-nuages-tag',
version='0.1.0',
author=u'Nicolas Noé',
author_email='nicolas@niconoe.eu',
packages=find_packages(),
url='https://github.com/niconoe/django-nuages-tag/',
license='BSD licence, see LICENCE.txt',
description='A simple Django TemplateTag (named compute_tag_cloud) to help in the creation of tag clouds.',
long_description=open('README.rst').read(),
include_package_data=True,
zip_safe=False,
)

0 comments on commit 5468bcc

Please sign in to comment.