source: phpbbauthplugin/0.11/setup.py

Last change on this file was 3558, checked in by John Hampton, 15 years ago

Added session population functionality on login. updated setup.py keywords and added trove classifier

  • Property svn:executable set to *
File size: 657 bytes
RevLine 
[3530]1#!/usr/bin/env python
2
3from setuptools import setup
4
5setup(
6    name = 'PhpBBAuth',
[3558]7    version = '0.2',
[3530]8    author = 'John Hampton',
9    author_email = 'pacoapblo@pacopablo.com',
10    url = 'http://trac-hacks.org/wiki/PhpBbAuthPlugin',
11    description = 'Authentication against PhpBB3.  Requires Account Manager',
12
[3538]13    license = 'MIT',
[3530]14    zip_safe=True,
15    packages=['phpbbauth'],
16    install_requires = [
17        'TracAccountManager>=0.2dev',
18    ],
19
[3558]20    classifiers = [
21        'Framework :: Trac',
22    ],
23
24    keywords="acct_mgr phpbb",
25
[3530]26    entry_points = {
27        'trac.plugins': [
[3538]28            'phpbbauth.main = phpbbauth.main',
[3530]29        ]
30    },
31
32)
Note: See TracBrowser for help on using the repository browser.