-
Notifications
You must be signed in to change notification settings - Fork 170
/
setup.py
33 lines (30 loc) · 999 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
26
27
28
29
30
31
32
33
from setuptools import setup, find_packages
with open('README.md') as readme_file:
readme = readme_file.read()
requirements = [
'numpy>=1.9.1'
]
setup(
author="Kamil Czarnogórski",
description="Python implementation of monte carlo tree search for 2 "
"players zero-sum game ",
install_requires=requirements,
long_description=readme,
long_description_content_type="text/markdown",
include_package_data=True,
keywords='mcts monte carlo tree search',
name='mctspy',
python_requires='>=3.5.7',
packages=find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
license='MIT',
url='https://github.com/int8/monte-carlo-tree-search',
version='0.1.1'
)