X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=setup.py;h=cfe1b5f46cae1be2d6975574f72a074f6d8510d7;hb=0c8029aef6b9c7bd79dceafaa888a81b4eef64a6;hp=eea8893f9452dda746f3c1eaf0f5d7eba1ce8d93;hpb=2c8d27b28eaf882c0a98c7604d97c6d66b048a8e;p=tools%2Fyacsgen.git diff --git a/setup.py b/setup.py index eea8893..cfe1b5f 100644 --- a/setup.py +++ b/setup.py @@ -1,6 +1,27 @@ +# Copyright (C) 2009-2023 EDF R&D +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library 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 +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +# +# See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com +# + from distutils.core import setup +from module_generator import yacsgen_version setup(name='YACSGEN', - version='5.1.0', + version=yacsgen_version.complete_version, author='C. Caremoli', packages=['module_generator'], + scripts=['script/hxx2salome.py',] )