-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
37 lines (35 loc) · 1.09 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
#!/usr/bin/env python
from setuptools import setup
from pathlib import Path
this_directory = Path(__file__).parent
long_description = (this_directory / 'README.md').read_text()
setup(
name='escherauth',
description='Python implementation of the AWS4 compatible Escher HTTP request signing protocol.',
long_description=long_description,
long_description_content_type='text/markdown',
version='2.0.0',
author='Emarsys Security',
author_email='[email protected]',
license='MIT',
url='http://escherauth.io/',
download_url='https://github.com/emartech/escher-python',
py_modules=['escherauth.escherauth'],
packages=[
'escherauth',
],
zip_safe=False,
install_requires=[
'requests>=2.0.0,<3.0.0'
],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Programming Language :: Python',
'Intended Audience :: Developers',
'Environment :: Plugins',
'License :: OSI Approved :: MIT License',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Utilities'
],
)