-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
41 lines (37 loc) · 1.07 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
from setuptools import find_packages, setup
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
import os
import sys
sys.path.insert(0, os.path.dirname(os.path.abspath("__file__")))
import rlskyjo
setup(
name="rlskyjo",
packages=find_packages(),
version=rlskyjo.__version__,
description="Multi-Agent Reinforcement Learning Environment"
" for the card game SkyJo, compatible with PettingZoo and RLLIB",
long_description=long_description,
long_description_content_type="text/markdown",
author="Michael Feil",
license="MIT",
url="https://github.com/michaelfeil/skyjo_rl",
project_urls={
"Bug Tracker": "https://github.com/michaelfeil/skyjo_rl/issues",
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX :: Linux",
],
install_requires=[
"gym",
"numba",
"numpy",
"PettingZoo",
"ray[tune]",
"ray[rllib]",
"setuptools",
"torch",
],
)