A hint: This file contains one or more very long lines, so maybe it is better readable using the pure text view mode that shows the contents as wrapped lines within the browser window.
1 #!/usr/bin/env python 2 3 # Copyright 2008 German Aerospace Center (DLR) 4 # 5 # Licensed under the Apache License, Version 2.0 (the "License"); 6 # you may not use this file except in compliance with the License. 7 # You may obtain a copy of the License at 8 # 9 # http://www.apache.org/licenses/LICENSE-2.0 10 # 11 # Unless required by applicable law or agreed to in writing, software 12 # distributed under the License is distributed on an "AS IS" BASIS, 13 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 # See the License for the specific language governing permissions and 15 # limitations under the License. 16 17 # Documentation for distutils: http://docs.python.org/dist/dist.html 18 19 from distutils.core import setup 20 21 setup(name='svnchecker', 22 version='0.3', 23 description='SVNChecker is a framework for Subversion hook scripts.', 24 long_description='SVNChecker is a framework for Subversion pre-commit hooks in order to implement checks of the to be commited files before they are commited. For example, you can check for the code style or unit tests. The output of the checks can be send by mail or be written into a file or simply print to the console..', 25 author='Deutsches Zentrum fuer Luft- und Raumfahrt e.V. (DLR)', 26 author_email='Heinrich.Wendel@dlr.de', 27 maintainer='Deutsches Zentrum fuer Luft- und Raumfahrt e.V. (DLR)', 28 maintainer_email='Andreas.Schreiber@dlr.de', 29 url='http://svnchecker.tigris.org', 30 packages = ['checks', 'handlers', 'modules'], 31 scripts=['Main.py'], 32 data_files=[('config', ['svncheckerconfig.ini'])], 33 classifiers=[ 34 'Development Status :: 2 - Pre-Alpha', 35 'Environment :: Console', 36 'Intended Audience :: Developers', 37 'Intended Audience :: System Administrators', 38 'License :: OSI Approved :: Apache Software License', 39 'Operating System :: POSIX', 40 'Programming Language :: Python', 41 'Topic :: Software Development', 42 'Topic :: Software Development :: Quality Assurance', 43 'Topic :: Software Development :: Bug Tracking', 44 'Topic :: Software Development :: Version Control', 45 ], 46 )