django-eav2/setup.py
Siegmeyer of Catarina 220b889043 Update setup.py (#2)
2018-06-14 16:15:36 +02:00

26 lines
1 KiB
Python
Executable file

from distutils.core import setup
setup(
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',
long_description = open('README.md').read(),
url = 'http://github.com/makimo/django-eav2',
packages = ['eav', 'tests'],
maintainer = 'Iwo Herka',
maintainer_email = 'hi@iwoherka.eu',
classifiers = [
'Development Status :: 5 - 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',
],
)