-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (25 loc) · 770 Bytes
/
Copy pathsetup.py
File metadata and controls
27 lines (25 loc) · 770 Bytes
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
# Use setuptools if we can
try:
from setuptools.core import setup
except ImportError:
from distutils.core import setup
PACKAGE = 'django-searchify'
VERSION = '0.3'
setup(
name=PACKAGE, version=VERSION,
description="Search integration for Django with a focus on indexing",
packages=[ 'searchify', 'searchify.clients', 'searchify.management.commands' ],
license='MIT',
author='James Aylett',
author_email='james@tartarus.org',
install_requires=[
'Django>=1.3',
],
classifiers=[
'Intended Audience :: Developers',
'Framework :: Django',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2',
'Topic :: Internet :: WWW/HTTP :: Indexing/Search',
],
)