-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
43 lines (39 loc) · 1.34 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
#! /usr/bin/env python
#
# Tastypie Searchable ModelResource Objects
# ======================================================================
try:
# Allow Python eggs bdist_egg
from setuptools import setup
except ImportError:
from distutils.core import setup
from tastypie_search import __version__
readme = open('README.md', 'r')
README_TEXT = readme.read()
readme.close()
setup(name='django-tastypie-searchable',
version=__version__,
license='MIT Licensed',
description='Tastypie Full-Text Searchable ModelResource using Haystack',
long_description=README_TEXT,
author='Andrew Droffner',
author_email='[email protected]',
url='https://github.com/adroffner/tastypie-searchable',
download_url='',
packages=['tastypie_search', ],
## scripts=[''],
install_requires=[
'django>=1.5',
'django-haystack>=2.0',
'queued_search',
],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: OS Independent',
## 'Programming Language :: Python :: 2.6', # import importlib in signals.py is 2.7 or greater.
'Programming Language :: Python :: 2.7',
],
)