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