forked from sgkasselau/pyaixi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
50 lines (47 loc) · 2.21 KB
/
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
import os
# Usage: python setup.py install
# to install this package in your Python environment.
#
# Note for future packages updates:
#
# Use 'python setup.py check sdist --formats=gztar,zip upload' to update PyPi with new
# .tar.gz and .zip release files.
from distutils.core import setup
setup(
name = 'pyaixi',
version = '1.0.4',
author = 'Geoff Kassel',
author_email = 'geoffkassel_at_gmail_dot_com',
packages = ['pyaixi', 'pyaixi.agents', 'pyaixi.environments', 'pyaixi.prediction', 'pyaixi.search'],
scripts = ['aixi.py'],
url = 'https://github.com/gkassel/pyaixi',
license = 'Creative Commons Attribution-ShareAlike 3.0 Unported License',
description = 'A pure Python implementation of the Monte Carlo-AIXI-Context Tree Weighting (MC-AIXI-CTW) artificial intelligence algorithm.',
long_description = open('README.txt').read(),
keywords = ["AIXI", "agent", "artificial intelligence", "general learning", "machine learning",
"MC-AIXI-CTW", "model based", "reinforcement learning", "prediction", "search"],
classifiers = [
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'License :: Freely Distributable',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Intended Audience :: Science/Research',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'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 :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Topic :: Software Development',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)