Tianshou/tianshou/__init__.py
Minghao Zhang 3c0a09fefd
minor reformat (#2)
* update atari.py

* fix setup.py
pass the pytest

* fix setup.py
pass the pytest
2020-03-26 09:01:20 +08:00

13 lines
195 B
Python

from tianshou import data, env, utils, policy, trainer, \
exploration
__version__ = '0.2.0'
__all__ = [
'env',
'data',
'utils',
'policy',
'trainer',
'exploration',
]