-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
64 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
FROM liuchong/rustup | ||
|
||
RUN apt-get update | ||
RUN apt-get install python3 python3-pip -y | ||
RUN apt-get install -y git | ||
|
||
RUN cargo install sgf-render | ||
|
||
COPY . . | ||
|
||
RUN pip3 install -r requirements.txt | ||
|
||
ENTRYPOINT python3 rengobot.py |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,3 @@ | ||
git+https://github.com/katie-oh/rengobot | ||
# dnspython==1.16.0 | ||
# PyNaCl==1.3.0 | ||
# async-timeout==3.0.1 | ||
# pandas | ||
sgfmill | ||
python-discord |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,13 @@ | ||
from setuptools import setup | ||
import os | ||
# from distutils.core import setup | ||
|
||
# os.system("curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs") | ||
# os.system("cargo install sgf-render") | ||
|
||
setup(name='ZenGoBot', | ||
version='1.0', | ||
description='Zen Go, forked from AwesomeRengoBot', | ||
py_modules=['sgfengine', 'rengobot'], | ||
scripts=["scripts/install-sgf-render"], | ||
) |