django-model-utils/setup.py

31 lines
922 B
Python
Raw Normal View History

from setuptools import setup, find_packages
2013-01-27 22:54:29 +00:00
long_description = (open('README.rst').read() +
open('CHANGES.rst').read() +
open('TODO.rst').read())
2013-01-27 22:54:29 +00:00
setup(
name='django-model-utils',
2013-04-12 03:38:49 +00:00
version='1.3.1.post1',
description='Django model mixins and utilities',
long_description=long_description,
author='Carl Meyer',
2013-03-28 02:59:19 +00:00
author_email='carl@oddbird.net',
url='https://github.com/carljm/django-model-utils/',
packages=find_packages(),
classifiers=[
2013-03-28 02:59:19 +00:00
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Framework :: Django',
],
zip_safe=False,
2013-03-28 02:59:19 +00:00
tests_require=["Django>=1.2"],
2011-04-16 19:49:33 +00:00
test_suite='runtests.runtests'
)