Skip to content
Snippets Groups Projects
setup.py 282 B
Newer Older
  • Learn to ignore specific revisions
  • tuhe's avatar
    tuhe committed
    from setuptools import find_packages, setup
    
    setup(
        name="irlc",
        packages=find_packages(),
        version="2024.0",
        description="Toolbox for 02465: Introduction to reinforcement learning and control",
        author="Tue Herlau",
        license="See information on DTU Learn.",
    )