forked from simpleai-team/simpleai
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
25 lines (23 loc) · 855 Bytes
/
setup.py
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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from distutils.core import setup
setup(
name='simpleai',
version='0.6.3',
description=u'An implementation of AI algorithms based on aima-python',
long_description=open('README.rst').read(),
author = u'Juan Pedro Fisanotti',
author_email = '[email protected]',
url='http://github.com/simpleai-team/simpleai',
packages=['simpleai', 'simpleai.search', 'simpleai.machine_learning'],
package_data={'simpleai.search': ['*.html']},
license='LICENSE.txt',
classifiers = [
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
],
)