-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
34 lines (33 loc) · 882 Bytes
/
setup.py
File metadata and controls
34 lines (33 loc) · 882 Bytes
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
from setuptools import find_packages, setup
setup(
name="aine-drl",
version="0.1.0",
description="AINE-DRL is a deep reinforcement learning (DRL) baseline framework. AINE means \"Agent IN Environment\".",
author="DevSlem",
author_email="devslem12@gmail.com",
url="https://github.com/DevSlem/AINE-DRL",
license="MIT",
keywords=[
"deep reinforcement learning",
"reinforcement learning",
"drl",
"deep learning",
"rl",
"game",
"ppo",
"gym",
"mlagents",
"pytorch"
],
packages=find_packages(include=["aine_drl", "aine_drl.*"]),
install_requires=[
"torch==1.11.0",
"tensorboard==2.12.0",
"PyYAML==6.0",
"gym==0.26.2",
"gym[all]",
"mlagents==0.30.0",
"protobuf==3.20.3",
],
python_requires=">=3.9",
)