mirror of
https://github.com/httpie/cli.git
synced 2025-08-09 10:44:55 +02:00
Initial commit.
This commit is contained in:
11
setup.py
Normal file
11
setup.py
Normal file
@ -0,0 +1,11 @@
|
||||
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'])
|
Reference in New Issue
Block a user