Skip to content

Commit

Permalink
Add setup script for bors.
Browse files Browse the repository at this point in the history
  • Loading branch information
bhearsum committed Apr 24, 2013
1 parent 5ea180f commit 2b67193
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 0 deletions.
2 changes: 2 additions & 0 deletions bors.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,8 @@
import github
from time import strftime, gmtime

__version__ = '1.0'

TIMEOUT=60

STATE_BAD = -1
Expand Down
16 changes: 16 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
from setuptools import setup

from bors import __version__

setup(
name='bors',
version=__version__,
description='A continuous integration and automatic landing system for github pull requests.',
author='Graydon Hoare',
py_modules=['bors', 'github'],
entry_points={
'console_scripts': ['bors = bors:main'],
'github': ['github = github']
},
zip_safe=False,
)

0 comments on commit 2b67193

Please sign in to comment.