#!/usr/bin/env python
from distutils.core import setup
from os.path import dirname, join
from codecs import open

setup(name='hashids',
      version='1.2.0',
      description='Python implementation of hashids (http://www.hashids.org).'
                  'Compatible with python 2.6-3.',
      long_description=open(join(dirname(__file__), 'README.rst'), encoding='utf-8').read(),
      author='David Aurelio',
      author_email='dev@david-aurelio.com',
      url='https://github.com/davidaurelio/hashids-python',
      license='MIT License',
      py_modules=('hashids',),
      classifiers=[
          'Programming Language :: Python :: 2',
          'Programming Language :: Python :: 2.6',
          'Programming Language :: Python :: 2.7',
          'Programming Language :: Python :: 3',
          'Programming Language :: Python :: 3.2',
          'Programming Language :: Python :: 3.3',
          'Programming Language :: Python :: 3.4',
          'Programming Language :: Python :: 3.5',
          'Programming Language :: Python :: 3.6',
      ],)
