Changeset 4945 for main/waeup.sirp/trunk/setup.py
- Timestamp:
- 31 Jan 2010, 09:18:13 (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.sirp/trunk/setup.py
r4919 r4945 1 import os 1 2 from setuptools import setup, find_packages 2 3 3 4 version = '0.1dev' 4 5 6 def read(*rnames): 7 return open(os.path.join(os.path.dirname(__file__), *rnames)).read() 8 9 long_description = ( 10 read('README.txt') 11 + '\n\n' 12 + read('src', 'waeup', 'sirp', 'README.txt') 13 + '\n\n' 14 + read('CHANGES.txt') 15 + '\n\n' 16 + 'Download\n' 17 + '********\n' 18 ) 19 5 20 setup(name='waeup.sirp', 6 21 version=version, 7 description="A university registration portal", 8 long_description="""\ 9 """, 10 # Get strings from http://www.python.org/pypi?%3Aaction=list_classifiers 11 classifiers=[], 12 keywords="", 22 description="A student online information and registration portal", 23 long_description=long_description, 24 25 keywords="portal waeup sirp student university registration grok zope", 26 # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers 27 classifiers=[ 28 'Development Status :: 3 - Alpha', 29 'Environment :: Web Environment', 30 'Intended Audience :: Education', 31 'License :: OSI Approved :: GNU General Public License (GPL)', 32 'Programming Language :: Python', 33 'Operating System :: POSIX', 34 'Operating System :: POSIX :: Linux', 35 'Framework :: Zope3', 36 'Topic :: Education', 37 'Topic :: Internet :: WWW/HTTP', 38 ], 13 39 author="The WAeUP team.", 14 40 author_email="",
Note: See TracChangeset for help on using the changeset viewer.