-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathsetup.coco
More file actions
32 lines (30 loc) · 696 Bytes
/
setup.coco
File metadata and controls
32 lines (30 loc) · 696 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
# Imports:
import setuptools
# Constants:
NAME = "minecraft-deep-learning"
VERSION = "0.0.1"
DESCRIPTION = "Deep reinforcement learning in Minecraft using gym-minecraft and keras-rl."
HOME_URL = "https://github.com/evhub/minecraft-deep-learning"
AUTHOR = "Evan Hubinger"
AUTHOR_EMAIL = "evanjhub@gmail.com"
REQUIREMENTS = [
"gym",
"keras",
"keras-rl",
"tensorflow-gpu",
"pygame",
"scipy",
"quiver_engine",
"progressbar2",
]
# Setup:
setuptools.setup(
name=NAME,
version=VERSION,
description=DESCRIPTION,
url=HOME_URL,
author=AUTHOR,
author_email=AUTHOR_EMAIL,
install_requires=REQUIREMENTS,
packages=setuptools.find_packages(),
)