moto/setup.py

26 lines
581 B
Python
Raw Normal View History

2013-02-18 16:09:40 -05:00
#!/usr/bin/env python
from setuptools import setup, find_packages
setup(
name='moto',
2013-09-10 16:55:12 -04:00
version='0.2.9',
2013-03-19 11:45:19 -04:00
description='A library that allows your python tests to easily'
2013-03-05 08:21:47 -05:00
' mock out the boto library',
2013-02-18 16:09:40 -05:00
author='Steve Pulec',
author_email='spulec@gmail',
url='https://github.com/spulec/moto',
2013-03-05 08:14:43 -05:00
entry_points={
'console_scripts': [
'moto_server = moto.server:main',
],
},
2013-02-25 23:56:41 -05:00
packages=find_packages(),
install_requires=[
2013-02-26 15:00:18 -05:00
"boto",
2013-03-05 08:14:43 -05:00
"flask",
2013-06-04 17:30:32 -04:00
"httpretty>=0.6.1",
"Jinja2",
],
2013-02-26 00:12:34 -05:00
)