mirror of
https://github.com/upa/mscp.git
synced 2026-02-04 11:34:44 +08:00
15 lines
291 B
Python
15 lines
291 B
Python
from distutils.core import setup, Extension
|
|
|
|
setup(
|
|
name='pymscp',
|
|
ext_modules = [
|
|
Extension(
|
|
'pymscp',
|
|
['src/pymscp.c'],
|
|
library_dirs = ['build'],
|
|
libraries = ['mscp'],
|
|
include_dirs = ['include']
|
|
)
|
|
]
|
|
)
|