Skip to content
Snippets Groups Projects
setup.py 543 B
Newer Older
  • Learn to ignore specific revisions
  • 
    with open('README.md') as f:
        readme = f.read()
    
    setup(
        name='hallgrim',
        version='0.1',
        description='A script generator for the ILIAS platform',
        long_description=readme,
        author='Jan Maximilian Michal',
        author_email='mail-github@jmx.io',
        url='https://gitlab.gwdg.de/j.michal/ilias-generator',
    
        scripts=['hallgrim/bin/hallgrim'],
        install_requires=['mistune', 'pygments', 'requests', 'requests_toolbelt'],
        packages=['hallgrim']
    )