-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
32 lines (29 loc) · 1.01 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
from setuptools import setup, find_packages
__version__ = None # This will get replaced when reading version.py
exec(open('rlgym_compat/version.py').read())
with open('README.md', 'r') as readme_file:
long_description = readme_file.read()
setup(
name='rlgym_compat',
packages=find_packages(),
version=__version__,
description='A library of RLBot compatibility objects for RLGym Agents',
long_description=long_description,
long_description_content_type='text/markdown',
author='Lucas Emery and Matthew Allen',
url='https://rlgym.github.io',
install_requires=[
'rlbot==1.*',
'numpy>=1.19',
],
python_requires='>=3.7',
license='Apache 2.0',
license_file='LICENSE',
keywords=['rocket-league', 'gym', 'reinforcement-learning'],
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3',
"Operating System :: Microsoft :: Windows",
],
)