From 1820857fc84de9d9ee03b74dd5044abd3d08b27b Mon Sep 17 00:00:00 2001 From: Jan Hartigan Date: Fri, 14 Sep 2018 18:16:23 -0700 Subject: [PATCH] Including readme and license files in python package distribution (#4) --- MANIFEST.in | 2 ++ readme.md | 2 +- setup.py | 2 +- 3 files changed, 4 insertions(+), 2 deletions(-) create mode 100644 MANIFEST.in diff --git a/MANIFEST.in b/MANIFEST.in new file mode 100644 index 0000000..a680eb8 --- /dev/null +++ b/MANIFEST.in @@ -0,0 +1,2 @@ +include LICENSE +include readme.md \ No newline at end of file diff --git a/readme.md b/readme.md index 1dec5da..92cfd47 100644 --- a/readme.md +++ b/readme.md @@ -1,6 +1,6 @@ A Python3 library that you can use to run a Monte Carlo tree search, either traditionally with drilling down to end game states or with expert policies as you might provide from a neural network. -- **Version:** 1.0.2 +- **Version:** 1.0.3 [![Build Status](https://travis-ci.org/ImparaAI/monte-carlo-tree-search.png?branch=master)](https://travis-ci.org/ImparaAI/monte-carlo-tree-search) diff --git a/setup.py b/setup.py index 024d9c9..0775429 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ setuptools.setup( name="imparaai-montecarlo", - version="1.0.2", + version="1.0.3", license='MIT', author="ImparaAI", author_email="author@example.com",