-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
executable file
·66 lines (57 loc) · 2.32 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#
# EAV-Django is a reusable Django application which implements EAV data model
# Copyright © 2009—2010 Andrey Mikhaylenko
#
# This file is part of EAV-Django.
#
# EAV-Django is free software: you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License as published
# by the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# EAV-Django is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public License
# along with EAV-Django. If not, see <http://gnu.org/licenses/>.
import os
from setuptools import setup
readme = open(os.path.join(os.path.dirname(__file__), 'README')).read()
setup(
# overview
name = 'eav-django',
description = ('a reusable Django application which implements the '
'Entity-Attribute-Value data model.'),
long_description = readme,
# technical info
version = '1.3.4',
packages = ['eav'],
requires = ['python (>= 2.5)', 'django (>= 1.1)',
'django_autoslug (>= 1.3.9)',
'django_view_shortcuts (>= 1.3.5)'],
provides = ['eav'],
# copyright
author = 'Andrey Mikhaylenko',
author_email = 'andy@neithere.net',
license = 'GNU Lesser General Public License (LGPL), Version 3',
# more info
url = 'http://bitbucket.org/neithere/eav-django/',
download_url = 'http://bitbucket.org/neithere/eav-django/get/tip.zip',
# categorization
keywords = 'django eav flexible data model object entity attribute value',
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',
'Topic :: Text Processing :: General',
],
)