mirror of
https://github.com/SlavikMIPT/tgcloud.git
synced 2025-02-15 04:32:14 +00:00
5 lines
159 B
Python
5 lines
159 B
Python
|
from distutils.core import setup, Extension
|
||
|
|
||
|
setup(name = "LZO", version = "1.0",
|
||
|
ext_modules = [Extension("lzo", ["lzomodule.c"], libraries=['lzo2'])])
|