Changeset 14190 for branches


Ignore:
Timestamp:
07/06/12 09:57:08 (12 years ago)
Author:
sil
Message:

some code cleanup

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/1.0/sara_cmt/setup.py

    r14189 r14190  
    3434    license = 'GPL',
    3535    #long_description = open('README').read(),
    36     long_description = '''\
    37 CMT is a Cluster Management Tool originally created at SARA Computing and \
    38 Networking Services, which is based in Amsterdam and known as SARA nowadays.''',
     36    long_description = 'CMT is a Cluster Management Tool originally created '\
     37        'at SARA Computing and Networking Services, which is based in'\
     38        'Amsterdam and known as SARA nowadays.',
    3939
    4040    platforms = ['linux-x86_64', 'linux-i386' ],
     
    6363    packages = ['sara_cmt', 'sara_cmt.cluster', 'sara_cmt.cluster.templatetags'],
    6464
    65 # http://docs.python.org/distutils/setupscript.html#listing-individual-modules
    66 # This describes two modules, one of them in the "root" package, the other in the pkg package. Again, the default package/directory layout implies that these two modules can be found in mod1.py and pkg/mod2.py, and that pkg/__init__.py exists as well.
    67 #
    68 #    py_modules = ['mod1', 'pkg.mod2'],
    69     #py_modules = ['bin.cmt'],
    70 
    7165# http://docs.python.org/distutils/setupscript.html#relationships-between-distributions-and-packages
    7266# Dependencies on other Python modules and packages can be specified by supplying the requires keyword argument to setup(). The value must be a list of strings. Each string specifies a package that is required, and optionally what versions are sufficient.
     
    7569    # Somehow 'requires' doesn't work; dependencies won't be installed
    7670    #requires = [
     71    #    'Python (>=2.6)'
    7772    #    'Django (>=1.2, <1.3)',
    7873    #    'IPy (>=0.75)',
     
    8075    #    'django_tagging (>=0.3.1)',
    8176    #    'psycopg2 (>=2.4.4)',
    82     #    'Python (>=2.6)'
    8377    #],
    8478    install_requires = [
     
    9084        'psycopg2>=2.4.4'
    9185    ],
    92     #provides =
    93     #obsoletes =
    9486
    9587    # http://docs.python.org/distutils/setupscript.html#installing-scripts
     
    9789    #scripts = ['sara_cmt/cmt.py'],
    9890    scripts = ['bin/cmt'],
    99 
    100     # http://docs.python.org/distutils/setupscript.html#installing-package-data
    101     # Often, additional files need to be installed into a package. These files are often data that's closely related to the package's implementation, or text files containing documentation that might be of interest to programmers using the package. These files are called package data.
    102     #package_dir = {'sara_cmt': 'sara_cmt'},
    103     #package_data = {'sara_cmt': ['sara_cmt/apache/django.wsgi']},
    10491
    10592    # http://docs.python.org/distutils/setupscript.html#installing-additional-files
Note: See TracChangeset for help on using the changeset viewer.