Skip to content
Snippets Groups Projects
setup.py 388 B
Newer Older
  • Learn to ignore specific revisions
  • # -*- coding: utf-8 -*-
    
    from setuptools import setup
    
    setup(
        name='hektor',
    
        description='A QTI-XML to JSON converter for humans',
        author='Jan Maximilian Michal',
        author_email='mail@janmax.org',
        url='https://gitlab.gwdg.de/j.michal/hektor',
        license='MIT',
        scripts=['bin/hektor'],
        install_requires=['lxml'],
        py_modules=['hektor']
    )