Changeset 6885
- Timestamp:
- 13 Oct 2011, 08:13:29 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.custom/trunk/setup.py
r6360 r6885 2 2 from setuptools import setup, find_packages 3 3 4 version = '0. 2dev'4 version = '0.1dev' 5 5 6 6 install_requires =[ 7 7 'setuptools', 8 'gp.fileupload',9 8 'grok', 9 'grokui.admin', 10 10 'grokcore.startup', 11 'grokui.admin', 12 'hurry.query', 13 'hurry.jquery', 14 'hurry.jqueryui', 15 'hurry.workflow >= 0.11', 16 # Add extra requirements here 17 'docutils', # For RST-processing... 18 'zope.xmlpickle', 19 'hurry.file', 20 #'hurry.yui', 21 'hurry.zoperesource', 22 'zc.sourcefactory', 23 'megrok.layout', 24 'reportlab', 25 'PIL', 26 'zope.app.authentication', # BBB: During switch to grok 1.1 27 'zope.app.file', 28 'zope.app.testing', # XXX: test_permissions needs this 29 'zope.file', 30 'zope.interface >= 3.6.0', 31 'zope.testbrowser', # XXX: test_permissions needs this 32 'zope.i18n', 33 'zope.mimetype', 34 'zope.errorview', 35 'zope.schema >= 3.8.0', 11 'waeup.sirp', 36 12 ], 37 13 … … 58 34 read('README.txt') 59 35 + '\n\n' 60 + read('src', 'waeup', ' sirp', 'README.txt')36 + read('src', 'waeup', 'custom', 'README.txt') 61 37 + '\n\n' 62 38 + read('CHANGES.txt') … … 66 42 ) 67 43 68 setup(name = 'waeup. sirp',44 setup(name = 'waeup.custom', 69 45 version = version, 70 description = "A student online information and registration portal",46 description = "A customized waeup.sirp", 71 47 long_description = long_description, 72 48 … … 103 79 # Add entry points here 104 80 [hurry.resource.libraries] 105 waeup_ sirp = waeup.sirp.browser.resources:waeup_sirp81 waeup_custom = waeup.custom.browser.resources:waeup_custom 106 82 [console_scripts] 107 83 sirp-debug = grokcore.startup:interactive_debug_prompt … … 110 86 main = grokcore.startup:application_factory 111 87 debug = grokcore.startup:debug_application_factory 112 113 88 """, 114 89 )
Note: See TracChangeset for help on using the changeset viewer.