-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
33 lines (31 loc) · 1009 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
32
33
from setuptools import setup, find_packages
setup(
name = 'jarn.jenkins',
version = '1.0b3',
author = "Hanno Schlichting",
author_email = "hanno@jarn.com",
description = "Buildout recipe for installing a Jenkins instance",
long_description=(open('README.rst').read() + '\n' +
open('CHANGES.txt').read()),
license = "BSD",
keywords = "jenkins buildout",
url='http://pypi.python.org/pypi/jarn.jenkins',
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 = ['jarn'],
install_requires = [
'iw.recipe.template',
'setuptools',
'zc.buildout',
'zc.recipe.egg',
],
zip_safe=False,
entry_points = {'zc.buildout': ['default = jarn.jenkins:Recipe']},
)