开发者

What framework is trac based on?

开发者 https://www.devze.com 2022-12-31 01:30 出处:网络
I just downlo开发者_如何学Caded this tracking system and curious what framework this great system uses?Trac does not use any overarching external \"framework\". You can see its complete list of extern

I just downlo开发者_如何学Caded this tracking system and curious what framework this great system uses?


Trac does not use any overarching external "framework". You can see its complete list of external dependencies (beyond a Python interpreter itself) in the setup.py file from the distribution:

    install_requires = [
        'setuptools>=0.6b1',
        'Genshi>=0.6',
    ],
    extras_require = {
        'Babel': ['Babel>=0.9.5'],
        'Pygments': ['Pygments>=0.6'],
        'reST': ['docutils>=0.3'],
        'SilverCity': ['SilverCity>=0.9.4'],
        'Textile': ['textile>=2.0'],
    },

If you're particularly interested in the HTTP side of things, take a look at the source to the trac.web module.

0

精彩评论

暂无评论...
验证码 换一张
取 消