-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathsetup.py
25 lines (23 loc) · 859 Bytes
/
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
import os
from distutils.core import setup
def read(fname):
with open(os.path.join(os.path.dirname(os.path.abspath(__file__)), fname)) as f:
return f.read()
setup(
name='haystack-cloudsearch',
version='0.2',
description='An Amazon Cloudsearch backend for Haystack',
long_description=read('README.rst'),
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Topic :: Internet :: WWW/HTTP :: Indexing/Search',
'Framework :: Django',
],
author='Brandon Adams',
author_email='emidln@gmail.com',
url='https://github.com/pbs/haystack-cloudsearch',
license='Apache License (2.0)',
py_modules=['haystack_cloudsearch'],
)