Ignore:
Timestamp:
31 Jan 2010, 09:18:13 (15 years ago)
Author:
uli
Message:

Prepare setup.py for first release.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/waeup.sirp/trunk/setup.py

    r4919 r4945  
     1import os
    12from setuptools import setup, find_packages
    23
    34version = '0.1dev'
    45
     6def read(*rnames):
     7    return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
     8
     9long_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
    520setup(name='waeup.sirp',
    621      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        ],
    1339      author="The WAeUP team.",
    1440      author_email="",
Note: See TracChangeset for help on using the changeset viewer.