-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (25 loc) · 728 Bytes
/
setup.py
File metadata and controls
26 lines (25 loc) · 728 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
from setuptools import find_packages, setup
setup(
name="harl",
version="1.0.0",
author="PKU-MARL",
description="PyTorch implementation of HARL Algorithms",
url="https://github.com/PKU-MARL/HARL",
packages=find_packages(),
license="MIT",
python_requires=">=3.8",
install_requires=[
"torch>=1.9.0",
"pyyaml>=5.3.1",
"tensorboard>=2.2.1",
"tensorboardX",
"setproctitle",
],
classifiers=[
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
],
)