Changeset 5057
- Timestamp:
- 11 Mar 2010, 13:32:10 (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.sirp/trunk/setup.py
r4955 r5057 3 3 4 4 version = '0.2dev' 5 6 install_requires =[ 7 'setuptools', 8 'grok', 9 'grokui.admin', 10 'hurry.query', 11 'hurry.workflow', 12 # Add extra requirements here 13 'zope.xmlpickle', 14 'hurry.yui', 15 'hurry.zoperesource', 16 'zc.sourcefactory', 17 'megrok.layout', 18 'zope.app.authentication', # BBB: During switch to grok 1.1 19 ], 20 21 tests_require = [ 22 'z3c.testsetup', 23 'zope.app.testing', 24 'zope.testbrowser', 25 'zope.testing', 26 ] 5 27 6 28 def read(*rnames): … … 18 40 ) 19 41 20 setup(name ='waeup.sirp',21 version =version,22 description ="A student online information and registration portal",23 long_description =long_description,42 setup(name = 'waeup.sirp', 43 version = version, 44 description = "A student online information and registration portal", 45 long_description = long_description, 24 46 25 keywords ="portal waeup sirp student university registration grok zope",47 keywords = "portal waeup sirp student university registration grok zope", 26 48 # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers 27 classifiers =[49 classifiers = [ 28 50 'Development Status :: 3 - Alpha', 29 51 'Environment :: Web Environment', … … 37 59 'Topic :: Internet :: WWW/HTTP', 38 60 ], 39 author ="The WAeUP team.",40 author_email ="",41 url ="http://www.waeup.org/",42 license ="GPL",43 package_dir ={'': 'src'},44 packages= find_packages('src'),61 author = "The WAeUP team.", 62 author_email = "", 63 url = "http://www.waeup.org/", 64 license = "GPL", 65 package_dir = {'': 'src'}, 66 packages= find_packages('src'), 45 67 namespace_packages = ['waeup',], 46 include_package_data=True, 47 zip_safe=False, 48 install_requires=['setuptools', 49 'grok', 50 'grokui.admin', 51 'hurry.query', 52 'hurry.workflow', 53 # Add extra requirements here 54 'zope.xmlpickle', 55 'hurry.yui', 56 'hurry.zoperesource', 57 'zc.sourcefactory', 58 'megrok.layout', 59 ], 60 extras_require=dict( 61 docs=['Sphinx', 62 'z3c.recipe.sphinxdoc', 63 ], 68 include_package_data = True, 69 zip_safe = False, 70 install_requires = install_requires, 71 tests_require = tests_require, 72 extras_require = dict( 73 test = tests_require, 74 docs = ['Sphinx', 75 'z3c.recipe.sphinxdoc', 76 ], 64 77 ), 65 78 entry_points="""
Note: See TracChangeset for help on using the changeset viewer.