You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
317 B
10 lines
317 B
#!/usr/bin/python3
|
|
|
|
from distutils.core import setup, Extension
|
|
|
|
module1 = Extension('pythonax25', libraries = ['ax25', 'ax25io'], sources = ['pythonax25module.c'])
|
|
|
|
setup (name = 'pythonax25',
|
|
version = '1.0',
|
|
description = 'CPython extension for LINUX ax.25 stack',
|
|
ext_modules = [module1])
|
|
|