2018-08-01 07:22:12 +00:00
|
|
|
from setuptools import setup, find_packages
|
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',
|
2021-04-23 19:08:07 +00:00
|
|
|
requires = ['python (>= 3.6)', 'django (>= 3.1)'],
|
2018-06-06 22:44:54 +00:00
|
|
|
provides = ['eav'],
|
|
|
|
|
description = 'Entity-Attribute-Value storage for Django',
|
2021-04-23 19:08:07 +00:00
|
|
|
url = 'http://github.com/lvm/django-eav2',
|
2018-08-01 07:22:12 +00:00
|
|
|
packages = find_packages(),
|
2021-04-23 19:08:07 +00:00
|
|
|
maintainer = 'Mauro Lizaur',
|
|
|
|
|
maintainer_email = 'mauro@sdf.org',
|
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',
|
|
|
|
|
],
|
|
|
|
|
)
|