mirror of
https://github.com/httpie/cli.git
synced 2024-11-07 16:34:35 +01:00
12 lines
347 B
Python
12 lines
347 B
Python
|
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'])
|