2016-04-29 23:45:42 +00:00
|
|
|
############################################################################
|
2018-02-23 09:53:12 +01:00
|
|
|
# Copyright (C) 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/.
|
2018-02-23 09:53:12 +01:00
|
|
|
#
|
|
|
|
# See the COPYRIGHT file distributed with this work for additional
|
|
|
|
# information regarding copyright ownership.
|
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',
|
2018-03-08 09:00:45 -04:00
|
|
|
author_email='info@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'])
|