diff options
author | Ryo Nakamura <upa@haeena.net> | 2023-03-11 22:49:19 +0900 |
---|---|---|
committer | Ryo Nakamura <upa@haeena.net> | 2023-03-11 22:49:19 +0900 |
commit | 8ea05729c2f14ea297598a0d0114059145c24451 (patch) | |
tree | 8cd76ea509cf0931107c8ccbc8a7180c95a6c062 /setup.py | |
parent | 855ee618a66c38579e7445dfc124dc7f00595041 (diff) |
add mscp and pymscp python modules.
pymscp is a C Python wrapper for libmscp functions. mscp module
provides simple (?) Python API.
Diffstat (limited to 'setup.py')
-rw-r--r-- | setup.py | 12 |
1 files changed, 10 insertions, 2 deletions
@@ -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', |