Changeset 11394


Ignore:
Timestamp:
24 Feb 2014, 07:42:51 (11 years ago)
Author:
Henrik Bettermann
Message:

Removed sphinx docs.
Added generic install instructions.
Removed README in src/.

Location:
main/kofacustom.skeleton/trunk
Files:
1 added
3 deleted
5 edited

Legend:

Unmodified
Added
Removed
  • main/kofacustom.skeleton/trunk/CHANGES.txt

    r11277 r11394  
    55=====================
    66
    7 * No changes yet.
     7* Removed sphinx docs.
     8
     9* Added generic install instructions.
     10
     11* Removed README in src/.
    812
    913
  • main/kofacustom.skeleton/trunk/README.txt

    r10765 r11394  
    1 What is `waeup.kofa`?
    2 *********************
     1waeup.skeleton
     2**************
    33
    4 The WAeUP Student Information and Registration Portal. `waeup.kofa` is
    5 a web-based management tool for managing universities and schools.
     4`waeup.skeleton` is a Python package providing a student information
     5portal based on WAeUP Kofa.
    66
    7 The package was created as an effort of the WAeUP group. See
    8 http://www.waeup.org to learn more about WAeUP.
     7This is a skelton package which can be used to create customized version of Kofa.
    98
    10 Installation instructions can be found in the User Documentation (docs folder in the file system).
     9For generic install instructions please see INSTALL.txt.
  • main/kofacustom.skeleton/trunk/buildout-zeo.cfg

    r11272 r11394  
    2020    zeo1_ini
    2121    zeo2_ini
    22     waeupdocs
    2322    coverage-detect
    2423    coverage-report
  • main/kofacustom.skeleton/trunk/buildout.cfg

    r11273 r11394  
    2323    themed_debug_ini
    2424    profile_ini
    25     waeupdocs
    2625    coverage-detect
    2726    coverage-report
     
    182181url = http://grok.zope.org/releaseinfo/grok-eggs-1.1.tgz
    183182
    184 [waeupdocs]
    185 recipe = collective.recipe.sphinxbuilder
    186 eggs = kofacustom.skeleton[docs]
    187 source = ${buildout:directory}/docs/source
    188 build = ${buildout:directory}/docs/build
    189 
    190183# Collect test coverage data.
    191184[coverage-detect]
  • main/kofacustom.skeleton/trunk/setup.py

    r11277 r11394  
    3535    ]
    3636
    37 docs_require = [
    38     'Sphinx',
    39     'collective.recipe.sphinxbuilder',
    40     'docutils',
    41     'roman',
    42     'repoze.sphinx.autointerface',
    43     ]
    44 
    4537def read(*rnames):
    4638    return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
     
    4840long_description = (
    4941    read('README.txt')
    50     + '\n\n'
    51     + read('src', 'kofacustom', 'skeleton', 'README.txt')
    5242    + '\n\n'
    5343    + read('CHANGES.txt')
     
    8979      extras_require = dict(
    9080        test = tests_require,
    91         docs = docs_require,
    9281        beaker = beaker_require,
    9382        diazo = diazo_require,
Note: See TracChangeset for help on using the changeset viewer.