#!/usr/bin/env python3 # # $Id: setup.py,v 1.32 2010/10/17 15:47:21 ghantoos Exp $ # # Copyright (C) 2008-2009 Ignace Mouzannar (ghantoos) # # This file is part of lshell # # 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. # # 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 # along with this program. If not, see . from distutils.core import setup import sys if __name__ == '__main__': setup(name='lliurex-meta-tools', version='0.2', description='Helper to create file with keywords for lliurex-version command', long_description="""""", author='Raul Rodrigo Segura', author_email='raurodse@gmail.com', maintainer='Raul Rodrigo Segura', maintainer_email='raurodse@gmail.com', keywords=['debhelper','lliurex'], url='http://www.lliurex.net', license='GPL', platforms='UNIX', scripts=['dh_llxmeta'] )