#!/usr/bin/env python

from setuptools import setup, find_packages

setup(name='imitation',
      version='0.1',
      description='Turing Test',
      author=['William Waites'],
      author_email='william.waites@strath.ac.uk',
      keywords=['AI'],
      classifiers=[
          # How mature is this project? Common values are
          #   3 - Alpha
          #   4 - Beta
          #   5 - Production/Stable
          'Development Status :: 3 - Alpha',

          # Intended audience
          'Intended Audience :: Education',
          'Intended Audience :: Science/Research',

          # License
          #'License :: OSI Approved :: GNU General Public License (GPL)',
          # Specify the Python versions you support here. In particular,
          # ensure that you indicate whether you support Python 2, Python 3
          # or both.
          'Programming Language :: Python :: 3',
      ],
      license='GPLv3',
      packages=find_packages(),
      install_requires=[
      ],
      entry_points={
         'console_scripts': [
              'imitation = imitation.client:cli',
              'imitation_server = imitation.server:cli',
          ],
      },
)