-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathsetup.py
45 lines (40 loc) · 1.49 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
39
40
41
42
43
44
45
import codecs
import os
from setuptools import setup, find_packages
here = os.path.abspath(os.path.dirname(__file__))
with codecs.open(os.path.join(here, 'README.rst'), encoding='utf-8') as f:
README = f.read()
with codecs.open(os.path.join(here, 'CHANGES.txt'), encoding='utf-8') as f:
CHANGES = f.read()
requires = ['requests', 'mohawk']
setup(name='requests-hawk',
version='1.2.1',
description='requests-hawk',
long_description=README + '\n\n' + CHANGES,
classifiers=[
"Intended Audience :: Developers",
"Programming Language :: Python",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
],
entry_points={
'httpie.plugins.auth.v1': [
'httpie_hawk = requests_hawk:HawkPlugin'
]
},
license='Apache License (2.0)',
author='Mozilla Services',
author_email='services-dev@mozilla.org',
url='https://github.com/mozilla-services/requests-hawk',
keywords='authentication token hawk requests',
packages=find_packages(),
include_package_data=True,
zip_safe=False,
install_requires=requires,
tests_require=requires,
test_suite="requests_hawk")