First commit
This commit is contained in:
10
python-ax25/setup.py
Executable file
10
python-ax25/setup.py
Executable file
@@ -0,0 +1,10 @@
|
||||
#!/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])
|
Reference in New Issue
Block a user