1 from setuptools
import setup
, find_packages
6 description
="Library for Hawk HTTP authorization",
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,
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'])