mirror of
https://github.com/glest/glest-source.git
synced 2025-09-28 00:19:00 +02:00
25 lines
890 B
Python
Executable File
25 lines
890 B
Python
Executable File
#! /usr/bin/python
|
|
# $Id: setupmingw32.py,v 1.9 2014/05/19 22:31:52 nanard Exp $
|
|
# the MiniUPnP Project (c) 2007-2014 Thomas Bernard
|
|
# http://miniupnp.tuxfamily.org/ or http://miniupnp.free.fr/
|
|
#
|
|
# python script to build the miniupnpc module under windows (using mingw32)
|
|
#
|
|
from distutils.core import setup, Extension
|
|
from distutils import sysconfig
|
|
sysconfig.get_config_vars()["OPT"] = ''
|
|
sysconfig.get_config_vars()["CFLAGS"] = ''
|
|
setup(name="miniupnpc",
|
|
version=open('VERSION').read().strip(),
|
|
author='Thomas BERNARD',
|
|
author_email='miniupnp@free.fr',
|
|
license=open('LICENSE').read(),
|
|
url='http://miniupnp.free.fr/',
|
|
description='miniUPnP client',
|
|
ext_modules=[
|
|
Extension(name="miniupnpc", sources=["miniupnpcmodule.c"],
|
|
libraries=["ws2_32", "iphlpapi"],
|
|
extra_objects=["libminiupnpc.a"])
|
|
])
|
|
|