mirror of
https://github.com/status-im/miniupnp.git
synced 2025-02-10 05:03:50 +00:00
44 lines
1.4 KiB
Python
Executable File
44 lines
1.4 KiB
Python
Executable File
#! /usr/bin/env python
|
|
# vim: tabstop=8 shiftwidth=8 expandtab
|
|
# $Id: setupmingw32.py,v 1.15 2024/01/14 23:48:43 nanard Exp $
|
|
# the MiniUPnP Project (c) 2007-2024 Thomas Bernard
|
|
# https://miniupnp.tuxfamily.org/ or http://miniupnp.free.fr/
|
|
#
|
|
# python script to build the miniupnpc module under windows (using mingw32)
|
|
#
|
|
import sys
|
|
|
|
if (sys.version_info.major * 10 + sys.version_info.minor) >= 35:
|
|
compat_lib = ["legacy_stdio_definitions"]
|
|
else:
|
|
compat_lib = []
|
|
|
|
try:
|
|
from setuptools import setup, Extension
|
|
except ImportError:
|
|
from distutils.core import setup, Extension
|
|
from distutils import sysconfig
|
|
sysconfig.get_config_vars()["OPT"] = ''
|
|
sysconfig.get_config_vars()["CFLAGS"] = ''
|
|
|
|
lic = open('LICENSE').read()
|
|
# follow the symbolic link manually if needed
|
|
if lic.startswith('../'):
|
|
lic = open(lic).read()
|
|
|
|
setup(name="miniupnpc",
|
|
version=open('VERSION').read().strip(),
|
|
author='Thomas BERNARD',
|
|
author_email='miniupnp@free.fr',
|
|
license=lic,
|
|
url='https://miniupnp.tuxfamily.org/',
|
|
description='MiniUPnP IGD client',
|
|
long_description=open('DESCRIPTION').read().strip(),
|
|
long_description_content_type='text/plain',
|
|
ext_modules=[
|
|
Extension(name="miniupnpc", sources=["src/miniupnpcmodule.c"],
|
|
libraries=["ws2_32", "iphlpapi"] + compat_lib,
|
|
include_dirs=['include'], extra_objects=["miniupnpc.lib"])
|
|
])
|
|
|