Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings
This repository was archived by the owner on Oct 25, 2024. It is now read-only.

Latest commit

 

History

History
History
executable file
·
41 lines (39 loc) · 1.43 KB

File metadata and controls

executable file
·
41 lines (39 loc) · 1.43 KB
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
#!/usr/bin/env python
from setuptools import setup, find_packages
# create long description
with open('README.rst') as file:
long_description = file.read()
with open('CHANGELOG.rst') as file:
long_description += '\n\n' + file.read()
setup(
name='httpsig',
description="Secure HTTP request signing using the HTTP Signature draft specification",
long_description=long_description,
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Software Development :: Libraries :: Python Modules",
],
keywords='http,authorization,api,web',
author='Adam Knight',
author_email='adam@movq.us',
url='https://github.com/ahknight/httpsig',
license='MIT',
packages=find_packages(),
include_package_data=True,
zip_safe=True,
use_scm_version=True,
setup_requires=['setuptools_scm'],
install_requires=['pycryptodome>=3,<4', 'six'],
test_suite="httpsig.tests",
)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.