We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 655cf59 commit 4859a10Copy full SHA for 4859a10
ml-agents/setup.py
@@ -1,4 +1,4 @@
1
-from setuptools import setup, find_packages
+from setuptools import setup, find_namespace_packages
2
from os import path
3
from io import open
4
@@ -23,7 +23,10 @@
23
"License :: OSI Approved :: Apache Software License",
24
"Programming Language :: Python :: 3.6",
25
],
26
- packages=["mlagents.trainers"], # Required
+ # find_namespace_packages will recurse through the directories and find all the packages
27
+ packages=find_namespace_packages(
28
+ exclude=["*.tests", "*.tests.*", "tests.*", "tests"]
29
+ ),
30
zip_safe=False,
31
install_requires=[
32
"mlagents_envs==0.8.2",
0 commit comments