-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
41 lines (38 loc) · 1.21 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
from setuptools import setup, find_packages
version = "0.1dev"
setup(
name = 'abstract.recipe.haystack-solr',
version = version,
author = "Simone Deponti",
author_email = "[email protected]",
description = ("Buildout recipe for installing a SOLR instance "
"for django-haystack"),
long_description=(open('README.rst').read() + '\n' +
open('CHANGES.txt').read()),
license = "BSD",
keywords = "solr django-haystack buildout",
url=('http://github.com/abstract-open-solutions/'
'abstract.recipe.haystack-solr'),
classifiers=[
"License :: OSI Approved :: BSD License",
"Framework :: Buildout",
"Framework :: Buildout :: Recipe",
],
tests_require=['zope.testing'],
packages = find_packages('src'),
include_package_data = True,
package_dir = { '': 'src' },
namespace_packages = ['abstract', 'abstract.recipe'],
install_requires = [
'setuptools',
'zc.buildout',
'zc.recipe.egg',
'Django',
'django-haystack',
'Tempita'
],
zip_safe=False,
entry_points = {
'zc.buildout': ['default = abstract.recipe.haystack_solr:Recipe']
},
)