mirror of
https://github.com/upa/mscp.git
synced 2026-02-15 09:44:43 +08:00
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:
12
setup.py
12
setup.py
@@ -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',
|
||||
|
||||
Reference in New Issue
Block a user