forked from juju/jenkins-github-lander
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
59 lines (52 loc) · 1.43 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
from setuptools import (
setup,
find_packages
)
import os
here = os.path.abspath(os.path.dirname(__file__))
README = open(os.path.join(here, 'README.rst')).read()
NEWS = open(os.path.join(here, 'NEWS.txt')).read()
version = '0.1a1'
install_requires = [
'pyramid',
'pyramid_debugtoolbar',
'requests',
'waitress',
]
tests_require = [
'nose',
'mock',
'responses',
]
setup(
name='jenkins-github-lander',
version=version,
description=("Webservice to aid in landing branches to github after "
"jenkins tests pass"),
long_description=README + '\n\n' + NEWS,
classifiers=[
# http://pypi.python.org/pypi?%3Aaction=list_classifiers
],
keywords='jenkins ci automated lander branch github',
author='Rick Harding',
author_email='rick.harding@canonical.com',
url='https://github.com/juju/jenkins-github-lander',
license='BSD',
packages=find_packages('src'),
package_dir={'': 'src'},
include_package_data=True,
zip_safe=False,
install_requires=install_requires,
tests_require=tests_require,
entry_points={
'paste.app_factory': [
'main = jenkinsgithublander.app:main'
],
'console_scripts': [
('lander-check-pulls='
'jenkinsgithublander.scripts.check_pulls:main'),
('lander-merge-result='
'jenkinsgithublander.scripts.merge_result:main'),
],
},
)