forked from datamllab/rlcard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
42 lines (39 loc) · 1.26 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
import setuptools
with open("README.md", "r", encoding="utf8") as fh:
long_description = fh.read()
extras = {
'with_torch': ['torch>=1.3']
}
setuptools.setup(
name="rlcard",
version="0.1.6",
author="Data Analytics at Texas A&M (DATA) Lab",
author_email="khlai037@tamu.edu",
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/*',
'games/uno/jsondata/action_space.json',
'games/limitholdem/card2index.json',
'games/leducholdem/card2index.json',
'games/doudizhu/jsondata/*'
]},
install_requires=[
'tensorflow>=1.14,<2.0',
'tensorflow_probability==0.7.0',
'dm-sonnet==1.35',
'numpy>=1.16.3',
'matplotlib>=3.0'
],
extras_require=extras,
requires_python='>=3.5',
classifiers=[
"Programming Language :: Python :: 3.6",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
)