-
Notifications
You must be signed in to change notification settings - Fork 28
/
setup.py
34 lines (31 loc) · 1.16 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
from setuptools import setup, find_packages
DESCRIPTION = 'Expressive NoSQL for Django'
LONG_DESCRIPTION = None
try:
LONG_DESCRIPTION = open('README.rst').read()
except:
pass
setup(name='django-dbindexer',
version='1.6.1',
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
author='Waldemar Kornewald, Thomas Wanschik',
author_email='[email protected]',
url='https://github.com/django-nonrel/django-dbindexer',
packages=find_packages(),
license='3-clause BSD',
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2.5',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Topic :: Software Development :: Libraries :: Application Frameworks',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)