summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorRyo Nakamura <upa@haeena.net>2023-03-11 22:49:19 +0900
committerRyo Nakamura <upa@haeena.net>2023-03-11 22:49:19 +0900
commit8ea05729c2f14ea297598a0d0114059145c24451 (patch)
tree8cd76ea509cf0931107c8ccbc8a7180c95a6c062 /setup.py
parent855ee618a66c38579e7445dfc124dc7f00595041 (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.py12
1 files changed, 10 insertions, 2 deletions
diff --git a/setup.py b/setup.py
index dae605b..34899d5 100644
--- a/setup.py
+++ b/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',