-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
51 lines (48 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
51
"""A setuptools based setup module.
See:
https://packaging.python.org/en/latest/distributing.html
/~https://github.com/pypa/sampleproject
"""
import setuptools
from setuptools import setup
from os import path
import shibumi
here = path.abspath(path.dirname(__file__))
# Get the long description from the README file
with open(path.join(here, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(name='shibumi',
version=shibumi.__version__,
description='Simple board games hiding complexity',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://donkirkby.github.io/shibumi-games/',
author='Don Kirkby',
classifiers=[ # https://pypi.org/classifiers/
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: Games/Entertainment :: Board Games',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.8'],
keywords='boardgames alphazero machine learning mcts shibumi',
packages=setuptools.find_packages(),
install_requires=['zero-play', 'numpy'],
extras_require={'ml': ['zero-play[ml]'],
'ml-gpu': ['zero-play[ml-gpu]']},
entry_points={
'gui_scripts': ['shibumi=shibumi.shibumi:main'],
# The game_display entry point lets you add screens for new games.
# The zero_play.game_display.GameDisplay class is a useful base class.
'zero_play.game_display': [
'margo=shibumi.margo.display:MargoDisplay',
'sandbox=shibumi.sandbox.display:SandboxDisplay',
'spaiji=shibumi.spaiji.display:SpaijiDisplay',
'spargo=shibumi.spargo.display:SpargoDisplay',
'sparks=shibumi.sparks.display:SparksDisplay',
'spire=shibumi.spire.display:SpireDisplay',
'spook=shibumi.spook.display:SpookDisplay',
'sploof=shibumi.sploof.display:SploofDisplay',
'spline=shibumi.spline.display:SplineDisplay']},
project_urls={
'Bug Reports': '/~https://github.com/donkirkby/shibumi-games/issues',
'Source': '/~https://github.com/donkirkby/shibumi-games'})