Commit cd1a857d by Alex Gaynor

Update setup.py

parent 2b00049c
from setuptools import setup, find_packages from setuptools import setup, find_packages
from taggit import VERSION
f = open('README.txt') f = open('README.txt')
readme = f.read() readme = f.read()
f.close() f.close()
setup( setup(
name='django-taggit', name='django-taggit',
version='0.1-pre', version=".".join(VERSION),
description='django-taggit is a reusable Django application for simple tagging.', description='django-taggit is a reusable Django application for simple tagging.',
long_description=readme, long_description=readme,
author='Alex Gaynor', author='Alex Gaynor',
...@@ -14,7 +16,7 @@ setup( ...@@ -14,7 +16,7 @@ setup(
url='http://github.com/alex/django-taggit/tree/master', url='http://github.com/alex/django-taggit/tree/master',
packages=find_packages(), packages=find_packages(),
classifiers=[ classifiers=[
'Development Status :: 3 - Alpha', 'Development Status :: 4 - Beta',
'Environment :: Web Environment', 'Environment :: Web Environment',
'Intended Audience :: Developers', 'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License', 'License :: OSI Approved :: BSD License',
......
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