-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (19 loc) · 691 Bytes
/
setup.py
File metadata and controls
23 lines (19 loc) · 691 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import sys, os, os.path
from setuptools import setup, Extension
autogentest = Extension('autogentest',
sources=['autogentest_wrap.cpp'],
#include_dirs=[],
)
byhandtest = Extension('byhandtest',
sources=['byhandtest_wrap.cpp'],
#include_dirs=[],
)
setup( name = "pybindgen-test",
version = "1.0.0",
description = "My testing modules for pybindgen",
author = "Robin Dunn",
author_email = "rdunn@enthought.com",
ext_modules = [autogentest,
byhandtest,
],
)