Skip to content
Snippets Groups Projects
setup.py 1.14 KiB
Newer Older
#!/usr/bin/env python

from setuptools import setup, find_packages

setup(name='imitation',
      version='0.2',
William Waites's avatar
William Waites committed
      description="Turing's Imitation Game",
      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': [
William Waites's avatar
William Waites committed
              'imitation = imitation.server:cli',