Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions ml-agents/setup.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from setuptools import setup, find_packages
from setuptools import setup, find_namespace_packages
from os import path
from io import open

Expand All @@ -23,7 +23,10 @@
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3.6",
],
packages=["mlagents.trainers"], # Required
# find_namespace_packages will recurse through the directories and find all the packages
packages=find_namespace_packages(
exclude=["*.tests", "*.tests.*", "tests.*", "tests"]
),
zip_safe=False,
install_requires=[
"mlagents_envs==0.8.2",
Expand Down