add mscp and pymscp python modules.

pymscp is a C Python wrapper for libmscp functions. mscp module
provides simple (?) Python API.
This commit is contained in:
Ryo Nakamura
2023-03-11 22:49:19 +09:00
parent 855ee618a6
commit 8ea05729c2
5 changed files with 291 additions and 35 deletions

View File

@@ -1,7 +1,15 @@
from distutils.core import setup, Extension
from setuptools import setup, Extension, find_packages
setup(
name='pymscp',
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',