# -*- coding: utf-8 -*-

from setuptools import setup

setup(
    name='hektor',
    version='0.1.1',
    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']
)