forked from glmcdona/LuxPythonEnvGym
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (22 loc) · 716 Bytes
/
setup.py
File metadata and controls
23 lines (22 loc) · 716 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
from setuptools import setup, find_packages
setup(
name='luxai2021',
version='0.1.0',
author='Geoff McDonald',
author_email='glmcdona@gmail.com',
packages=find_packages(exclude=['tests*']),
url='http://pypi.python.org/pypi/luxai2021/',
license='MIT',
description='Matching python environment code for Lux AI 2021 Kaggle competition and a gym interface for RL models',
long_description=open('README.md').read(),
install_requires=[
"pytest",
"stable_baselines3",
"numpy",
"tensorboard",
"gym"
],
package_data={'luxai2021': ['game/game_constants.json']},
test_suite='nose2.collector.collector',
tests_require=['nose2'],
)