from setuptools import setup setup( name='mossutils', version='0.0.1', description='Useful scripts for working with Stanford\'s plagiarism checker MOSS', url='https://gitlab.ethz.ch/scmalte/mossutils.git', author='Malte Schwerhoff', author_email='malte.schwerhoff@inf.ethz.ch', license='unlicensed', packages=['mossutils'], install_requires=[ 'mosspy', ], scripts=['bin/mossutils-moss'], zip_safe=False)