mirror of
https://github.com/upa/mscp.git
synced 2026-02-04 03:24:58 +08:00
pymscp is a C Python wrapper for libmscp functions. mscp module provides simple (?) Python API.
23 lines
573 B
Python
23 lines
573 B
Python
from setuptools import setup, Extension, find_packages
|
|
|
|
setup(
|
|
name='mscp',
|
|
version = "0.0.1",
|
|
description = "libmscp python binding",
|
|
author = "Ryo Nakamura",
|
|
author_email = "upa@haeena.net",
|
|
url = "https://github.com/upa/mscp",
|
|
packages = find_packages("mscp"),
|
|
package_dir = {"": "mscp"},
|
|
py_modules = [ "mscp" ],
|
|
ext_modules = [
|
|
Extension(
|
|
'pymscp',
|
|
['src/pymscp.c'],
|
|
library_dirs = ['build'],
|
|
libraries = ['mscp'],
|
|
include_dirs = ['include']
|
|
)
|
|
]
|
|
)
|