-
Notifications
You must be signed in to change notification settings - Fork 11
/
setup.py
31 lines (29 loc) · 910 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
26
27
28
29
30
31
import os
from distutils.core import setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name='haystack-static-pages',
version='0.2.1alpha',
description="Static pages for Haystack",
long_description=read('README.rst'),
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Topic :: Internet :: WWW/HTTP :: Indexing/Search',
'Framework :: Django',
],
author='David Sauve',
author_email='[email protected]',
url='http://github.com/trapeze/haystack-static-pages/',
license='BSD',
packages=[
'haystack_static_pages',
'haystack_static_pages.management',
'haystack_static_pages.management.commands',
],
package_data={
'haystack_static_pages': ['templates/*']
}
)