File: setup.py

package info (click to toggle)
trac-httpauth 1.1%2Br6675-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd, wheezy
  • size: 56 kB
  • ctags: 44
  • sloc: python: 78; makefile: 2
file content (29 lines) | stat: -rw-r--r-- 768 bytes parent folder | download | duplicates (3)
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',
        ]
    }
)