- Timestamp:
- 24 Feb 2014, 07:17:59 (11 years ago)
- Location:
- main/waeup.imostate/trunk
- Files:
-
- 1 added
- 3 deleted
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.imostate/trunk/CHANGES.txt
r11314 r11390 5 5 ===================== 6 6 7 * No changes yet. 7 * Removed sphinx docs. 8 9 * Added generic install instructions. 10 11 * Removed README in src/. 8 12 9 13 -
main/waeup.imostate/trunk/README.txt
r10371 r11390 1 What is `waeup.kofa`? 2 ************** *******1 waeup.imostate 2 ************** 3 3 4 The WAeUP Student Information and Registration Portal. `waeup.kofa` is 5 a web-based management tool for managing universities and schools.4 `waeup.imostate` is a Python package providing a student information 5 portal based on WAeUP Kofa. 6 6 7 The package was created as an effort of the WAeUP group. See 8 http://www.waeup.org to learn more about WAeUP. 7 This is a customized version of Kofa for imostate purposes. 9 8 10 Installation instructions can be found in the User Documentation (docs folder in the file system).9 For generic install instructions please see INSTALL.txt. -
main/waeup.imostate/trunk/buildout-zeo.cfg
r11309 r11390 20 20 zeo1_ini 21 21 zeo2_ini 22 waeupdocs23 22 coverage-detect 24 23 coverage-report -
main/waeup.imostate/trunk/buildout.cfg
r11310 r11390 23 23 themed_debug_ini 24 24 profile_ini 25 waeupdocs26 25 coverage-detect 27 26 coverage-report … … 181 180 url = http://grok.zope.org/releaseinfo/grok-eggs-1.1.tgz 182 181 183 [waeupdocs]184 recipe = collective.recipe.sphinxbuilder185 eggs = waeup.imostate[docs]186 source = ${buildout:directory}/docs/source187 build = ${buildout:directory}/docs/build188 189 182 # Collect test coverage data. 190 183 [coverage-detect] -
main/waeup.imostate/trunk/setup.py
r11314 r11390 35 35 ] 36 36 37 docs_require = [38 'Sphinx',39 'collective.recipe.sphinxbuilder',40 'docutils',41 'roman',42 'repoze.sphinx.autointerface',43 ]44 45 37 def read(*rnames): 46 38 return open(os.path.join(os.path.dirname(__file__), *rnames)).read() … … 48 40 long_description = ( 49 41 read('README.txt') 50 + '\n\n'51 + read('src', 'waeup', 'imostate', 'README.txt')52 42 + '\n\n' 53 43 + read('CHANGES.txt') … … 89 79 extras_require = dict( 90 80 test = tests_require, 91 docs = docs_require,92 81 beaker = beaker_require, 93 82 diazo = diazo_require,
Note: See TracChangeset for help on using the changeset viewer.