2014-04-09 12:14:35 +00:00
|
|
|
#! /usr/bin/python
|
2015-12-30 07:56:25 +00:00
|
|
|
# vim: tabstop=8 shiftwidth=8 expandtab
|
2014-04-09 12:14:35 +00:00
|
|
|
# $Id: setup.py,v 1.9 2012/05/23 08:50:10 nanard Exp $
|
2017-08-30 19:13:02 +00:00
|
|
|
# the MiniUPnP Project (c) 2007-2017 Thomas Bernard
|
2014-04-09 12:14:35 +00:00
|
|
|
# http://miniupnp.tuxfamily.org/ or http://miniupnp.free.fr/
|
|
|
|
#
|
|
|
|
# python script to build the miniupnpc module under unix
|
|
|
|
#
|
2017-08-30 19:13:02 +00:00
|
|
|
# Uses MAKE environment variable (defaulting to 'make')
|
|
|
|
|
|
|
|
from setuptools import setup, Extension
|
|
|
|
from setuptools.command import build_ext
|
|
|
|
import subprocess
|
|
|
|
import os
|
|
|
|
|
|
|
|
EXT = ['libminiupnpc.a']
|
|
|
|
|
|
|
|
class make_then_build_ext(build_ext.build_ext):
|
|
|
|
def run(self):
|
|
|
|
subprocess.check_call([os.environ.get('MAKE', 'make')] + EXT)
|
|
|
|
build_ext.build_ext.run(self)
|
|
|
|
|
2014-10-02 16:43:13 +00:00
|
|
|
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',
|
2017-08-30 19:13:02 +00:00
|
|
|
cmdclass={'build_ext': make_then_build_ext},
|
2014-04-09 12:14:35 +00:00
|
|
|
ext_modules=[
|
2014-10-02 16:43:13 +00:00
|
|
|
Extension(name="miniupnpc", sources=["miniupnpcmodule.c"],
|
2017-08-30 19:13:02 +00:00
|
|
|
extra_objects=EXT)
|
2014-10-02 16:43:13 +00:00
|
|
|
])
|
2014-04-09 12:14:35 +00:00
|
|
|
|