forked from michaelkoelle/marl-aquarium
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
38 lines (37 loc) · 1.17 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
33
34
35
36
37
38
from setuptools import find_packages, setup
setup(
name="marl-aquarium",
version="0.1.10",
packages=find_packages(exclude=["examples"]),
license="MIT",
description="Aquarium: A Comprehensive Framework for Exploring Predator-Prey Dynamics through Multi-Agent Reinforcement Learning Algorithms",
long_description=open("README.md", encoding="utf-8").read(),
long_description_content_type="text/markdown",
author="Yannick Erpelding and Michael Kölle",
author_email="[email protected]",
url="https://github.com/michaelkoelle/marl-aquarium",
keywords=[
"artificial intelligence",
"pettingzoo",
"multi-agent",
"reinforcement learning",
"deep learning",
"predator-prey",
"gymnasium",
"gym",
],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires=">=3.8",
install_requires=[
"gymnasium==0.28.1",
"moviepy==1.0.3",
"numpy==1.22.4",
"pettingzoo==1.24.2",
"pygame==2.1.3",
],
include_package_data=True,
)