mirror of
https://github.com/fail0verflow/hbc.git
synced 2024-11-05 09:35:12 +01:00
9 lines
238 B
Python
9 lines
238 B
Python
from distutils.core import setup, Extension
|
|
|
|
module1 = Extension('_ec',
|
|
sources = ['_ecmodule.c'])
|
|
|
|
setup (name = 'ELT_C',
|
|
version = '0.1',
|
|
description = 'C ELT functions',
|
|
ext_modules = [module1]) |