-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.py
38 lines (36 loc) · 1.19 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
from setuptools import setup
setup(
name='httpie-unixsocket',
description='UNIX socket transport plugin for HTTPie.',
long_description=open('README.rst').read().strip(),
version='0.0.0',
author='Marc Abramowitz',
author_email='[email protected]',
license='BSD',
url='https://github.com/httpie/httpie-unixsocket',
py_modules=['httpie_unixsocket'],
zip_safe=False,
entry_points={
'httpie.plugins.transport.v1': [
'httpie_unixsocket = httpie_unixsocket:UnixSocketTransportPlugin'
]
},
install_requires=[
'httpie>=0.7.0',
'requests_unixsocket'
],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Environment :: Plugins',
'License :: OSI Approved :: BSD License',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Utilities'
],
)