forked from google-research/football
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
68 lines (61 loc) · 2.33 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
# coding=utf-8
# Copyright 2019 Google LLC
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
"""Install Google Research Football."""
import os
import sys
from setuptools import find_packages
from setuptools import setup, Extension
from setuptools.command.install import install
from setuptools.command.build_ext import build_ext
class CMakeExtension(Extension):
def __init__(self, name):
# don't invoke the original build_ext for this special extension
super().__init__(name, sources=[])
class CustomBuild(build_ext):
"""Custom installation script to build the C++ environment."""
def run(self):
dest_dir = os.path.join(self.build_lib, 'gfootball_engine')
if (os.system('gfootball/build_game_engine.sh') or
os.system('cp -r third_party/fonts ' + dest_dir) or
os.system("cp third_party/gfootball_engine/_gameplayfootball.so " + dest_dir)):
print("Google Research Football compilation failed")
sys.exit(1)
super(CustomBuild, self).run()
packages = find_packages() + find_packages('third_party')
setup(
name='gfootball',
version='1.3',
description=('Google Research Football - RL environment based on '
'open-source game Gameplay Football'),
author='Google LLC',
url='https://github.com/google-research/football',
license='Apache 2.0',
packages=packages,
package_dir={'gfootball_engine': 'third_party/gfootball_engine'},
install_requires=[
'pygame==1.9.6',
'opencv-python',
'scipy',
'gym',
],
extras_require={
'tf_cpu': ['tensorflow<2.0'],
'tf_gpu': ['tensorflow-gpu<2.0'],
},
include_package_data=True,
keywords='gfootball reinforcement-learning python machine learning',
ext_modules=[CMakeExtension('brainball_cpp_engine')],
cmdclass={'build_ext': CustomBuild},
)