1
0
This repository has been archived on 2021-04-26. You can view files and clone it, but cannot push or open issues or pull requests.
gallery3-contrib/3.0/client/Python/pylibgal3/setup.py
2010-12-22 13:00:13 +08:00

37 lines
1.1 KiB
Python

#!/usr/bin/env python
#
# Author: Jay Deiman
# Email: admin@splitstreams.com
#
# This file is part of pylibgal3.
#
# pylibgal3 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.
#
# pylibgal3 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
# along with pylibgal3. If not, see <http://www.gnu.org/licenses/>.
#
from distutils.core import setup
from libg3 import __version__ as version
import sys
setup(name='pylibgal3' ,
version=version ,
author='Jay Deiman' ,
author_email='admin@splitstreams.com' ,
url='http://stuffivelearned.org' ,
description='A library for accessing/manipulating a Gallery 3 install' ,
packages=['libg3'] ,
package_dir={'libg3': 'libg3'} ,
)