2013-11-27 07:53:57 -06:00
|
|
|
#!/usr/bin/python2
|
2008-10-21 20:46:07 -05:00
|
|
|
|
2008-10-22 16:52:32 -05:00
|
|
|
# Authors:
|
|
|
|
# Jason Gerard DeRose <jderose@redhat.com>
|
2008-10-21 20:46:07 -05:00
|
|
|
#
|
|
|
|
# Copyright (C) 2008 Red Hat
|
|
|
|
# see file 'COPYING' for use and warranty information
|
|
|
|
#
|
2010-12-09 06:59:11 -06:00
|
|
|
# This program is free software; you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
|
|
# (at your option) any later version.
|
2008-10-21 20:46:07 -05:00
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
2010-12-09 06:59:11 -06:00
|
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2008-10-21 20:46:07 -05:00
|
|
|
|
|
|
|
"""
|
|
|
|
Python-level packaging using distutils.
|
|
|
|
"""
|
|
|
|
|
2009-10-13 12:28:00 -05:00
|
|
|
from distutils.core import setup
|
2009-01-31 00:46:51 -06:00
|
|
|
import ipalib
|
2010-03-29 07:25:57 -05:00
|
|
|
|
2008-10-21 20:46:07 -05:00
|
|
|
|
|
|
|
setup(
|
|
|
|
name='freeipa',
|
2009-01-31 00:46:51 -06:00
|
|
|
version=ipalib.__version__,
|
2013-12-03 08:21:45 -06:00
|
|
|
license='GPLv3+',
|
2008-10-22 16:52:32 -05:00
|
|
|
url='http://freeipa.org/',
|
2008-10-21 20:46:07 -05:00
|
|
|
packages=[
|
2009-01-04 19:39:39 -06:00
|
|
|
'ipaserver',
|
2013-06-10 07:43:24 -05:00
|
|
|
'ipaserver.advise',
|
|
|
|
'ipaserver.advise.plugins',
|
2009-01-04 19:39:39 -06:00
|
|
|
'ipaserver.plugins',
|
2009-02-02 12:50:53 -06:00
|
|
|
'ipaserver.install',
|
2011-11-23 15:52:40 -06:00
|
|
|
'ipaserver.install.plugins',
|
2015-05-27 04:05:23 -05:00
|
|
|
'ipaserver.install.server',
|
2008-10-21 20:46:07 -05:00
|
|
|
],
|
|
|
|
)
|