-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
42 lines (40 loc) · 1.25 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
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
version = '1.3.10.dev0'
tests_require = ['zope.testing', 'manuel']
setup(
name='ftw.recipe.solr',
version=version,
description="A zc.buildout recipe to install a Solr server",
long_description=open("README.rst").read()
+ "\n" +
open("HISTORY.txt").read(),
classifiers=[
'Framework :: Buildout :: Recipe',
'Intended Audience :: Developers',
'License :: OSI Approved :: Zope Public License',
'Programming Language :: Python',
'Topic :: Software Development :: Build Tools',
],
keywords='',
author='4teamwork AG',
author_email='mailto:[email protected]',
url='https://github.com/4teamwork/ftw.recipe.solr',
license='GPL2',
packages=find_packages(exclude=['ez_setup']),
namespace_packages=['ftw', 'ftw.recipe'],
include_package_data=True,
zip_safe=False,
install_requires=[
'setuptools',
'zc.buildout',
'zc.recipe.egg',
'jinja2',
],
tests_require=tests_require,
extras_require=dict(tests=tests_require),
test_suite='ftw.recipe.solr.tests.test_docs.test_suite',
entry_points={
'zc.buildout': ['default = ftw.recipe.solr:Recipe'],
},
)