setup.py 1.02 KB
Newer Older
1
import os
Alex Gaynor committed
2 3
from setuptools import setup, find_packages

Alex Gaynor committed
4 5
from taggit import VERSION

6 7

f = open(os.path.join(os.path.dirname(__file__), 'README.txt'))
Alex Gaynor committed
8 9 10 11 12
readme = f.read()
f.close()

setup(
    name='django-taggit',
Alex Gaynor committed
13
    version=".".join(map(str, VERSION)),
Alex Gaynor committed
14 15 16 17 18 19
    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(),
20 21 22 23 24 25 26
    zip_safe=False,
    package_data = {
        'taggit': [
            'locale/*/LC_MESSAGES/*',
            'contrib/suggest/README.txt',
        ],
    },
Alex Gaynor committed
27
    classifiers=[
Alex Gaynor committed
28
        'Development Status :: 4 - Beta',
Alex Gaynor committed
29 30 31 32 33 34 35
        'Environment :: Web Environment',
        'Intended Audience :: Developers',
        'License :: OSI Approved :: BSD License',
        'Operating System :: OS Independent',
        'Programming Language :: Python',
        'Framework :: Django',
    ],
36
    test_suite='runtests.runtests'
Alex Gaynor committed
37 38
)