django-eav2/setup.py

30 lines
913 B
Python
Raw Normal View History

2010-09-28 10:45:20 +00:00
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.',
2018-04-06 11:58:18 +00:00
long_description=open('README.md').read(),
2010-09-28 10:45:20 +00:00
url='http://github.com/mvpdev/django-eav',
2017-09-05 10:14:07 +00:00
packages=['eav', 'tests'],
2010-09-28 10:45:20 +00:00
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',
],
)