Newer
Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
#!/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',
],
},
)