1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
|
#!/usr/bin/env python
# -*- coding: iso-8859-1 -*-
from setuptools import setup
setup(
name = 'TracHTTPAuth',
version = '1.1',
packages = ['httpauth'],
#package_data = { 'httpauth': ['templates/*.cs', 'htdocs/*.js', 'htdocs/*.css' ] },
author = "Noah Kantrowitz",
author_email = "noah@coderanger.net",
description = "Use the AccountManager plugin to provide HTTP authentication from Trac itself.",
license = "BSD",
keywords = "trac plugin http auth",
url = "http://trac-hacks.org/wiki/HttpAuthPlugin",
classifiers = [
'Framework :: Trac',
],
install_requires = ['TracAccountManager'],
entry_points = {
'trac.plugins': [
'httpauth.filter = httpauth.filter',
]
}
)
|