Bug 1874684 - Part 10: Replace BigInt with Int128 in RoundNumberToIncrement. r=mgaudet
[gecko.git] / third_party / python / mohawk / setup.py
blobddaf9026c2940b5ac677431b4d478bb635db9074
1 from setuptools import setup, find_packages
4 setup(name='mohawk',
5 version='0.3.4',
6 description="Library for Hawk HTTP authorization",
7 long_description='',
8 author='Kumar McMillan, Austin King',
9 author_email='kumar.mcmillan@gmail.com',
10 license='MPL 2.0 (Mozilla Public License)',
11 url='https://github.com/kumar303/mohawk',
12 include_package_data=True,
13 classifiers=[
14 'Intended Audience :: Developers',
15 'Natural Language :: English',
16 'Operating System :: OS Independent',
17 'Programming Language :: Python :: 2',
18 'Programming Language :: Python :: 3',
19 'Programming Language :: Python :: 2.6',
20 'Programming Language :: Python :: 2.7',
21 'Programming Language :: Python :: 3.3',
22 'Topic :: Internet :: WWW/HTTP',
24 packages=find_packages(exclude=['tests']),
25 install_requires=['six'])