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