Skip to content

Commit

Permalink
0.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
matteobettini committed Oct 23, 2023
1 parent c6b5e7f commit 3d62fc0
Showing 1 changed file with 23 additions and 2 deletions.
25 changes: 23 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,20 +3,41 @@
# This source code is licensed under the license found in the
# LICENSE file in the root directory of this source tree.
#
import os
from pathlib import Path

from setuptools import find_packages, setup


def package_files(directory):
paths = []
for path, _, filenames in os.walk(directory):
for filename in filenames:
paths.append(os.path.join("..", path, filename))
return paths


extra_files = package_files(
str(
Path(os.path.dirname(os.path.realpath(__file__)))
/ Path("benchmarl")
/ Path("conf")
)
)

setup(
name="benchmarl",
version="0.0.2",
version="0.0.3",
description="BenchMARL",
url="https://github.com/facebookresearch/BenchMARL",
author="Matteo Bettini",
author_email="mb2389@cl.cam.ac.uk",
packages=find_packages(),
install_requires=["torchrl>=0.2.0", "tqdm", "hydra-core"],
extras_require={
"vmas": ["vmas>=1.2.10"],
"pettingzoo": ["pettingzoo[all]>=1.24.1"],
},
packages=find_packages(),
include_package_data=True,
package_data={"": extra_files},
)

0 comments on commit 3d62fc0

Please sign in to comment.