httpie-cli/setup.py
Jakub Roztočil 3f0d621c5a Fixed a typo.
2012-02-25 14:34:41 +01:00

12 lines
349 B
Python

from setuptools import setup
setup(name='httpie',version='0.1.1',
description='cURL for humans',
url='https://github.com/jkbr/httpie',
author='Jakub Roztocil',
license='BSD',
packages=['httpie'],
entry_points={'console_scripts': ['httpie = httpie.httpie:main']},
install_requires=['requests>=0.10.4', 'Pygments>=1.4'])