Files
bob-builder-1/setup.py
T
Ed Morley e30c2e53ef v0.0.13
2017-05-30 23:38:16 +01:00

28 lines
536 B
Python
Executable File

#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup
deps = [
'boto',
'docopt',
]
setup(
name='bob-builder',
version='0.0.13',
install_requires=deps,
description='Binary Build Toolkit.',
# long_description='Meh.',/
author='Kenneth Reitz',
author_email='kenneth@heroku.com',
url='https://github.com/kennethreitz/bob-builder',
packages=['bob'],
license='MIT',
entry_points={
'console_scripts': [
'bob = bob:cli.dispatch',
],
}
)