forked from datamllab/rlcard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
49 lines (46 loc) · 1.76 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
import setuptools
with open("README.md", "r", encoding="utf8") as fh:
long_description = fh.read()
extras = {
'torch': ['torch>=1.3'],
'tensorflow': ['tensorflow>=1.14,<2.0', 'tensorflow_probability==0.7.0']
}
setuptools.setup(
name="rlcard",
version="0.2.1",
author="Data Analytics at Texas A&M (DATA) Lab",
author_email="[email protected]",
description="A Toolkit for Reinforcement Learning in Card Games",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/datamllab/rlcard",
keywords=["Reinforcement Learning", "game", "RL", "AI"],
packages=setuptools.find_packages(exclude=('tests',)),
package_data={
'rlcard': ['models/pretrained/leduc_holdem_nfsp/*',
'models/pretrained/leduc_holdem_cfr/*',
'models/pretrained/leduc_holdem_nfsp_pytorch/*',
'games/uno/jsondata/action_space.json',
'games/limitholdem/card2index.json',
'games/leducholdem/card2index.json',
'games/doudizhu/jsondata/*',
'games/uno/jsondata/*',
'games/simpledoudizhu/jsondata/*',
'agents/gin_rummy_human_agent/gui_cards/*',
'agents/gin_rummy_human_agent/gui_cards/cards_png/*',
'agents/gin_rummy_human_agent/gui_gin_rummy/*'
]},
install_requires=[
'numpy>=1.16.3',
'matplotlib>=3.0',
'pillow>=5.2.0',
'termcolor',
],
extras_require=extras,
requires_python='>=3.5',
classifiers=[
"Programming Language :: Python :: 3.6",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
)