-
Notifications
You must be signed in to change notification settings - Fork 11
/
setup.py
37 lines (35 loc) · 1.17 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
from setuptools import setup, find_packages
description="""
Hstore module of django orm extensions package (collection of third party plugins build in one unified package).
"""
setup(
name = "djorm-ext-hstore",
version = '0.5',
url = 'https://github.com/niwibe/djorm-ext-hstore',
license = 'BSD',
platforms = ['OS Independent'],
description = description.strip(),
author = 'Andrey Antukh',
author_email = '[email protected]',
maintainer = 'Andrey Antukh',
maintainer_email = '[email protected]',
packages = find_packages(),
include_package_data = False,
install_requires = [
'djorm-ext-core >= 0.4.0',
'djorm-ext-expressions >= 0.4.0',
],
zip_safe = False,
classifiers = [
'Development Status :: 4 - Beta',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Topic :: Internet :: WWW/HTTP',
"Programming Language :: Python",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.3",
]
)