mirror of
https://github.com/jazzband/django-eav2.git
synced 2026-03-16 22:40:26 +00:00
Update setup.py (#2)
This commit is contained in:
parent
f260060b60
commit
220b889043
1 changed files with 12 additions and 15 deletions
27
setup.py
27
setup.py
|
|
@ -1,23 +1,20 @@
|
|||
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'],
|
||||
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 :: 4 - Beta',
|
||||
'Development Status :: 5 - Beta',
|
||||
'Environment :: Web Environment',
|
||||
'Framework :: Django',
|
||||
'Intended Audience :: Developers',
|
||||
|
|
|
|||
Loading…
Reference in a new issue