setup.py 354 B

123456789
  1. from setuptools import setup
  2. from setuptools import find_packages
  3. setup(name='crest',
  4. version='0.1',
  5. description='Python library for Bootstrapped Q-learning with Context Relevant Observation Pruning to Generalize in Text-based Games',
  6. author='IBM Research',
  7. url='https://arxiv.org/abs/2009.11896',
  8. packages=find_packages())