django-eav2/setup.py

26 lines
978 B
Python
Raw Normal View History

2018-06-20 07:43:18 +00:00
from setuptools import setup
2010-09-28 10:45:20 +00:00
setup(
2018-06-06 22:44:54 +00:00
name = 'django-eav2',
version = __import__('eav').__version__,
license = 'GNU Lesser General Public License (LGPL), Version 3',
requires = ['python (>= 3.5)', 'django (>= 1.11.14)'],
provides = ['eav'],
description = 'Entity-Attribute-Value storage for Django',
url = 'http://github.com/makimo/django-eav2',
packages = ['eav', 'tests'],
maintainer = 'Iwo Herka',
maintainer_email = 'hi@iwoherka.eu',
2010-09-28 10:45:20 +00:00
classifiers = [
2018-06-20 07:43:18 +00:00
'Development Status :: 3 - Alpha',
2010-09-28 10:45:20 +00:00
'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',
],
)