2016-04-29 23:45:42 +00:00
|
|
|
############################################################################
|
2018-01-29 23:45:56 +00:00
|
|
|
# Copyright (C) 2016, 2018 Internet Systems Consortium, Inc. ("ISC")
|
2016-04-29 23:45:42 +00:00
|
|
|
#
|
2016-06-27 14:56:38 +10:00
|
|
|
# This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
2016-04-29 23:45:42 +00:00
|
|
|
############################################################################
|
|
|
|
|
2016-04-29 14:17:21 -07:00
|
|
|
from distutils.core import setup
|
|
|
|
setup(name='isc',
|
|
|
|
version='2.0',
|
|
|
|
description='Python functions to support BIND utilities',
|
|
|
|
url='https://www.isc.org/bind',
|
|
|
|
author='Internet Systems Consortium, Inc',
|
2016-06-24 12:20:37 +10:00
|
|
|
author_email='bind9-bugs@isc.org',
|
2018-02-02 10:37:54 +11:00
|
|
|
license='MPL',
|
2018-01-29 13:21:33 +11:00
|
|
|
requires=['ply'],
|
2016-04-29 14:17:21 -07:00
|
|
|
packages=['isc'])
|