view src/setup.py @ 88:7d03f602cade

Implement user activation. New users are now created in an inactive state assigning to them an invalid password. A cryptographically signed token required for user account activation is sent to the user email and shown to the administrator. The activation procedure assigns an user chosen password to the account.
author Daniele Nicolodi <daniele@grinta.net>
date Sun, 21 Aug 2011 18:17:26 +0200
parents cd44da6ece8d
children 3024c77310d1
line wrap: on
line source

from setuptools import setup

setup(
    name='ltpdarepo',
    version='0.2dev',
    entry_points={'console_scripts': [ 'run = ltpdarepo:main',
                                       'admin = ltpdarepo.admin:main',
                                       'test = ltpdarepo.tests:main']}
)