-
-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (21 loc) · 535 Bytes
/
setup.py
File metadata and controls
24 lines (21 loc) · 535 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
"""
Setuptools configuration for building yahdlc as a C extension module.
See https://setuptools.pypa.io/en/latest/userguide/ext_modules.html for further
information on this topic.
"""
from setuptools import Extension, setup
setup(
ext_modules=[
Extension(
name="yahdlc",
sources=[
"src/python4yahdlc.c",
"yahdlc/C/fcs.c",
"yahdlc/C/yahdlc.c",
],
include_dirs=[
"yahdlc/C/",
],
)
]
)