-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (25 loc) · 832 Bytes
/
setup.py
File metadata and controls
28 lines (25 loc) · 832 Bytes
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
import os
import sys
from setuptools import setup
# Don't import gym_cellular_automata module here, since deps may not be installed
sys.path.insert(0, os.path.join(os.path.dirname(__file__), "gym_cellular_automata"))
from version import VERSION
setup(
name="gym_cellular_automata",
packages=["gym_cellular_automata"],
version=VERSION,
description="Cellular Automata Environments for Reinforcement Learning",
url="https://github.com/elbecerrasoto/gym-cellular-automata",
author="Emanuel Becerra Soto",
author_email="elbecerrasoto@gmail.com",
license="MIT",
install_requires=[
"gymnasium",
"numpy",
"matplotlib",
"scipy",
"svgpath2mpl",
],
tests_require=["pytest", "pytest-cov", "pytest-repeat", "pytest-randomly"],
python_requires=">=3.9",
)