mirror of
https://github.com/gryf/ebook-converter.git
synced 2025-12-24 08:42:27 +01:00
Here is the first batch of modules, which are needed for converting several formats to LRF. Some of the logic has been change, more cleanups will follow.
10 lines
331 B
Python
10 lines
331 B
Python
import setuptools
|
|
|
|
module = setuptools.Extension('ebook_converter.ebooks.compression.cPalmdoc',
|
|
sources=['ebook_converter/ebooks/compression/'
|
|
'palmdoc.c'],
|
|
language='c')
|
|
|
|
setuptools.setup(ext_modules=[module])
|
|
# setuptools.setup()
|