django-eav2/setup.py
2018-05-30 17:04:11 +02:00

29 lines
913 B
Python
Executable file

from distutils.core import setup
setup(
name='django-eav',
version=__import__('eav').__version__,
license = 'GNU Lesser General Public License (LGPL), Version 3',
requires = ['python (>= 2.5)', 'django (>= 1.2)'],
provides = ['eav'],
description='Entity-attribute-value model implementation as a reusable'
'Django app.',
long_description=open('README.md').read(),
url='http://github.com/mvpdev/django-eav',
packages=['eav', 'tests'],
classifiers = [
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)',
'Programming Language :: Python',
'Topic :: Database',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)