-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
37 lines (35 loc) · 1.05 KB
/
setup.py
File metadata and controls
37 lines (35 loc) · 1.05 KB
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
from setuptools import setup
VERSION = '1.7'
GITHUB_URL = 'https://github.com/nsofnetworks/httpie-nsof'
ARCHIVE_URL = GITHUB_URL + "/archive/%s.tar.gz"
setup(
name='httpie-nsof',
description='Nsof OAuth 2 plugin for HTTPie.',
long_description=open('README.rst').read().strip(),
version=VERSION,
author='Alon Horowitz',
author_email='alon@nsof.io',
license='Apache License 2.0',
url=GITHUB_URL,
download_url=ARCHIVE_URL % VERSION,
py_modules=['httpie_nsof'],
scripts=['httpie-nsof-setup'],
zip_safe=False,
entry_points={
'httpie.plugins.auth.v1': [
'httpie_nsof = httpie_nsof:NsofAuthPlugin'
]
},
install_requires=[
'httpie>=0.7.0',
],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Programming Language :: Python',
'Environment :: Plugins',
'License :: OSI Approved :: Apache Software License',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Utilities'
],
keywords='httpie oauth oauth2 nsof token',
)