Select Git revision
create-round
-
Martin Mareš authoredMartin Mareš authored
setup.py 767 B
#!/usr/bin/env python3
import setuptools
setuptools.setup(
packages=['mo', 'mo/ext', 'mo/jobs', 'mo/web'],
scripts=[
'bin/add-role',
'bin/check-jobs',
'bin/create-contests',
'bin/create-round',
'bin/create-tasks',
'bin/create-user',
'bin/export-orgs',
'bin/fix-submits',
'bin/gen-mailing-list',
'bin/import-points',
'bin/init-year',
'bin/merge-users',
'bin/p-score',
'bin/publish-score',
'bin/register-contest',
'bin/register-year',
'bin/reset-user',
'bin/run-jobs',
'bin/schedule-round-job',
'bin/set-contest',
'bin/set-round',
],
include_package_data=True,
zip_safe=False,
)