forked from Lux-AI-Challenge/Lux-Design-S2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
24 lines (19 loc) · 772 Bytes
/
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
import os
from setuptools import setup, find_packages
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name="luxai2022",
version="1.1.2",
author="Lux AI Challenge",
description="The Lux AI Challenge Season 2",
license="MIT",
keywords="reinforcement-learning machine-learning ai",
url="https://github.com/Lux-AI-Challenge/Lux-Design-2022",
packages=find_packages(exclude="kits"),
long_description=read("README.md"),
long_description_content_type='text/markdown',
entry_points={'console_scripts': [
'luxai2022 = luxai_runner.cli:main']},
install_requires=['numpy', 'pygame', 'termcolor', 'matplotlib', 'pettingzoo', 'vec_noise', 'omegaconf', 'gym==0.19', 'scipy'],
)