1
0
mirror of https://github.com/httpie/cli.git synced 2024-11-24 08:22:22 +02:00
httpie-cli/setup.py

12 lines
347 B
Python
Raw Normal View History

2012-02-25 15:39:38 +03:00
from setuptools import setup
setup(name='httpie',version='0.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'])