mirror of
https://github.com/Hopiu/django-model-utils.git
synced 2026-03-17 04:10:24 +00:00
36 lines
1.2 KiB
Python
36 lines
1.2 KiB
Python
from setuptools import setup, find_packages
|
|
|
|
|
|
long_description = (open('README.rst').read() +
|
|
open('CHANGES.rst').read() +
|
|
open('TODO.rst').read())
|
|
|
|
|
|
setup(
|
|
name='django-model-utils',
|
|
version='1.3.1.post1',
|
|
description='Django model mixins and utilities',
|
|
long_description=long_description,
|
|
author='Carl Meyer',
|
|
author_email='carl@oddbird.net',
|
|
url='https://github.com/carljm/django-model-utils/',
|
|
packages=find_packages(),
|
|
install_requires=['django>=1.4.2'],
|
|
classifiers=[
|
|
'Development Status :: 5 - Production/Stable',
|
|
'Environment :: Web Environment',
|
|
'Intended Audience :: Developers',
|
|
'License :: OSI Approved :: BSD License',
|
|
'Operating System :: OS Independent',
|
|
'Programming Language :: Python',
|
|
'Programming Language :: Python :: 2.6',
|
|
'Programming Language :: Python :: 2.7',
|
|
'Programming Language :: Python :: 3',
|
|
'Programming Language :: Python :: 3.2',
|
|
'Programming Language :: Python :: 3.3',
|
|
'Framework :: Django',
|
|
],
|
|
zip_safe=False,
|
|
tests_require=["Django>=1.2"],
|
|
test_suite='runtests.runtests'
|
|
)
|