-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
37 lines (34 loc) · 1.12 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
from importlib.metadata import entry_points
from setuptools import setup
from setuptools import setup, find_packages
import pathlib
here = pathlib.Path(__file__).parent.resolve()
long_description = (here / "README.md").read_text(encoding="utf-8")
setup (
name = 'MonteCarloTreeSearch-Gomoku',
version = '0.1',
description = 'Monte Carlo Tree Search for Gomoku',
long_description = long_description,
long_description_content_type="text/markdown",
author = 'Vu Quoc Hien',
author_email = '[email protected]',
url = 'https://bitbucket.org/Hienvq2304/deep_hla',
packages=["src", "models", "GameBoard"],
keywords='gomoku, deep reinforcement learning, monte carlo tree search',
install_requires=[
'torch==1.9.0',
'scikit-learn==0.24.2',
'sklearn==0.0',
'tqdm==4.62.2',
'matplotlib==3.4.3',
'pygame==2.0.1'
],
python_requires='>=3.6',
entry_points={
'console_scripts': [
'gomoku=mcts_training:main',
'gomoku-supervised=supervised_learning:main',
'gomoku-play=test_game:main'
]
},
)