mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-16 03:24:07 +00:00
d7d817c849
Language (WSDL) files using Python. Requires PyXML and 4Suite. (Fixes to unbreak the 4Suite port were recently sent to maintainer and will be committed shortly.)
15 lines
274 B
Python
15 lines
274 B
Python
#!/usr/bin/env python
|
|
# To use:
|
|
# python setup.py install
|
|
#
|
|
|
|
__version__ = "$FreeBSD$"
|
|
|
|
from os import environ
|
|
from distutils.core import setup
|
|
|
|
setup(name = environ["PORTNAME"],
|
|
version = environ["PORTVERSION"],
|
|
description = environ["COMMENT"],
|
|
py_modules=["wsdllib"])
|