mirror of
https://github.com/QingdaoU/Judger.git
synced 2025-01-01 09:51:41 +00:00
8 lines
202 B
Python
8 lines
202 B
Python
# coding=utf-8
|
|
import platform
|
|
from distutils.core import setup, Extension
|
|
|
|
setup(name='_judger',
|
|
version='2.1',
|
|
ext_modules=[Extension('_judger', sources=['_judger.c'], libraries=["dl"])])
|