mirror of
https://github.com/QingdaoU/Judger.git
synced 2024-12-29 16:31:42 +00:00
7 lines
241 B
Python
7 lines
241 B
Python
# coding=utf-8
|
|
from distutils.core import setup, Extension
|
|
setup(name='judger',
|
|
version='1.0',
|
|
ext_modules=[Extension('judger', sources=['judger.c', 'runner.c'],
|
|
libraries=['seccomp'])])
|