Changeset 34:ea8b7fdd203d in mailjam


Ignore:
Timestamp:
May 28, 2012, 9:12:36 AM (12 years ago)
Author:
Borja Lopez <borja@…>
Branch:
default
Phase:
public
Message:

Added classifiers and download url to the setup.py file

Files:
2 edited

Legend:

Unmodified
Added
Removed
  • MANIFEST

    r23 r34  
    55bin/mailjam-mta
    66bin/mailjam-server
     7bin/rc.d/mailjam
     8conf/mailjam-cli.conf
     9conf/mailjam-mta.conf
     10conf/mailjam.conf
    711mailjam/__init__.py
    812mailjam/cli.py
  • setup.py

    r33 r34  
    4747    packages=['mailjam'],   
    4848    url='https://bitbucket.org/codigo23/mailjam',
     49    download_url='http://pypi.python.org/pypi/mailjam#downloads',
    4950    license='BSD licence, see LICENSE',
    5051    description='Mailing lists management software',
     
    5455                                               'conf/mailjam-mta.conf',
    5556                                               'conf/mailjam-cli.conf']),
    56                 (proper_rc_path(), ['bin/rc.d/mailjam'])]
     57                (proper_rc_path(), ['bin/rc.d/mailjam'])],
     58    classifiers=[
     59        'Development Status :: 4 - Beta',
     60        'Environment :: Console',
     61        'Environment :: No Input/Output (Daemon)',
     62        'Intended Audience :: System Administrators',
     63        'License :: OSI Approved :: BSD License',
     64        'Natural Language :: English',
     65        'Operating System :: OS Independent',
     66        'Programming Language :: Python :: 2',
     67        'Topic :: Communications',
     68        'Topic :: Communications :: Email',
     69        'Topic :: Communications :: Email :: Mailing List Servers',
     70        ]
    5771)
Note: See TracChangeset for help on using the changeset viewer.