-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
30 lines (29 loc) · 1.04 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
from setuptools import setup
setup(
name='escherauth-go',
description='Python wrapper for the Go implementation of the AWS4 compatible Escher HTTP request signing protocol.',
version='0.1.5',
author='Istvan Szenasi',
author_email='[email protected]',
license='MIT',
url='http://escherauth.io/',
download_url='https://github.com/EscherAuth/escher-python',
zip_safe=False,
packages=['escherauth_go'],
py_modules=['escherauth_go.escher_signer', 'escherauth_go.escher_validator'],
package_data={
'escherauth_go': ['*.so', '*.dylib']
},
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
'Operating System :: POSIX :: Linux',
'Operating System :: Microsoft :: Windows :: Windows 10',
'Operating System :: MacOS :: MacOS X',
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Utilities'
],
)