-
Notifications
You must be signed in to change notification settings - Fork 17
/
setup.py
42 lines (38 loc) · 1.46 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
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License
import setuptools
import os
if not os.path.isdir("mazeexplorer/acc") or not os.listdir("mazeexplorer/acc"):
raise FileNotFoundError("\nacc files not found.\n"
"Have you pulled the required submodules?\n"
"If not, use the line:\n\n\t"
"git submodule update --init --recursive\n")
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="mazeexplorer",
version="1.0.5",
author="Luke Harries, Sebastian Lee, Jaroslaw Rzepecki, Katya Hofmann, Sam Devlin",
author_email="[email protected]",
description="Customisable 3D benchmark for assessing generalisation in Reinforcement Learning.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/microsoft/MazeExplorer",
packages=setuptools.find_packages(),
package_data={'mazeexplorer': ['content/*', 'acc/*', 'config_template.txt']},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
install_requires=[
"vizdoom",
"gym",
"omgifol",
"opencv-python",
"imageio",
"numpy",
"tensorboardX",
"pytest"
]
)