Changeset 1365
- Timestamp:
- 09/28/08 12:14:14 (2 months ago)
- Location:
- trunk/pysoy
- Files:
-
- 2 modified
-
config.py (modified) (2 diffs, 1 prop)
-
setup.py (modified) (2 diffs, 1 prop)
Legend:
- Unmodified
- Added
- Removed
-
trunk/pysoy/config.py
- Property svn:keywords set to Author Date Rev
r1308 r1365 2 2 __credits__ = '''Copyright (C) 2006,2007,2008 PySoy Group 3 3 4 This program is free software :you can redistribute it and/or modify4 This program is free software; you can redistribute it and/or modify 5 5 it under the terms of the GNU Affero General Public License as published 6 6 by the Free Software Foundation, either version 3 of the License, or … … 13 13 14 14 You should have received a copy of the GNU Affero General Public License 15 along with this program. If not, see http://www.gnu.org/licenses/ 16 17 $Id: setup.py 1141 2008-03-13 07:07:31Z ArcRiley $ 18 ''' 15 along with this program; if not, see http://www.gnu.org/licenses 16 ''' 17 __author__ = 'PySoy Group' 18 __date__ = 'Last change on '+ \ 19 '$Date$'[7:-20]+ \ 20 'by '+'$Author$'[9:-2] 21 __version__ = 'Trunk (r'+'$Rev$'[6:-2]+')' 19 22 20 23 import sys -
trunk/pysoy/setup.py
- Property svn:keywords changed from Id to Author Date Rev
r1349 r1365 1 1 #!/usr/bin/env python 2 2 ''' PySoy's compile and install script ''' 3 ''' 4 Copyright (C) 2006,2007,2008 PySoy Group 5 6 This program is free software: you can redistribute it and/or modify 3 __credits__ = '''Copyright (C) 2006,2007,2008 PySoy Group 4 5 This program is free software; you can redistribute it and/or modify 7 6 it under the terms of the GNU Affero General Public License as published 8 7 by the Free Software Foundation, either version 3 of the License, or … … 15 14 16 15 You should have received a copy of the GNU Affero General Public License 17 along with this program. If not, see http://www.gnu.org/licenses/ 18 19 $Id$ 20 ''' 16 along with this program; if not, see http://www.gnu.org/licenses 17 ''' 18 __author__ = 'PySoy Group' 19 __date__ = 'Last change on '+ \ 20 '$Date$'[7:-20]+ \ 21 'by '+'$Author$'[9:-2] 22 __version__ = 'Trunk (r'+'$Rev$'[6:-2]+')' 21 23 22 24 import os
