Commit 83b520da by Alex Gaynor

Fix readme and setup

parent cd097f7f
django-taggit
=============
Is a simpler approach to tagging with Django. Just add a TagManager to your
model and go.
from setuptools import setup, find_packages
f = open('README.txt')
readme = f.read()
f.close()
setup(
name='django-taggit',
version='0.1-pre',
description='django-taggit is a reusable Django application for simple tagging.',
long_description=readme,
author='Alex Gaynor',
author_email='alex.gaynor@gmail.com',
url='http://github.com/alex/django-taggit/tree/master',
packages=find_packages(),
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Framework :: Django',
],
)
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 sign in to comment