-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathsetup.py
23 lines (21 loc) · 816 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
from setuptools import setup
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name='gym_simplegrid',
version='1.0.6',
keywords='reinforcement learning, environment, gridworld, agent, rl, openaigym, openai-gym, gym, gymnasium, farama-foundation',
url='https://github.com/damat-le/gym-simplegrid',
description='Simple Gridworld Environment for Gymnasium',
long_description=long_description,
long_description_content_type="text/markdown",
packages=['gym_simplegrid', 'gym_simplegrid.envs'],
install_requires=[
'gymnasium',
'matplotlib'
],
python_requires=">=3.7",
author="Leo D'Amato",
author_email="[email protected]",
classifiers=["Programming Language :: Python :: 3", "Operating System :: OS Independent"]
)