Skip to content

Commit

Permalink
Include dmlab2d in setup.py
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 547814530
Change-Id: Ida883e4f7d286757284fae4b069407e4642dcbbd
  • Loading branch information
jagapiou authored and copybara-github committed Jul 13, 2023
1 parent 4f57350 commit 22f0a44
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,9 @@ def build_assets(self):
'Operating System :: POSIX :: Linux',
'Operating System :: MacOS :: MacOS X',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
],
cmdclass={'build_py': BuildPy},
Expand All @@ -109,7 +112,8 @@ def build_assets(self):
'absl-py',
'chex',
'dm_env',
# 'dmlab2d', # Not yet available for PIP install.
'dmlab2d',
'dm-tree',
'immutabledict',
'ml-collections',
'networkx',
Expand All @@ -123,14 +127,12 @@ def build_assets(self):
extras_require={
# Dependencies required for rllib example.
'rllib': [
'dm-tree',
'gym',
'ray[rllib,default]==2.0.0',
'numpy<1.23', # Needed by Ray because it uses `np.bool`.
],
# Dependencies required for pettingzoo example.
'pettingzoo': [
'dm-tree',
'gym',
'matplotlib',
'pettingzoo>=1.22.3',
Expand Down

0 comments on commit 22f0a44

Please sign in to comment.