~trac-bzr-team/trac-bzr/trunk

40.1.8 by Gediminas Paulauskas
Use default python
1
#!/usr/bin/python
18.1.2 by Jelmer Vernooij
Simplify package structure
2
3
from setuptools import setup
4
93 by Martin von Gagern
Extended setup script: dependencies, classifiers, dates and readme.
5
readme=file('README').read()
6
readme=readme[:readme.index('\n.. cut long_description here')]
1 by Yann Hodique
initial checkin. Trivial fork of Mercurial Plugin
7
93 by Martin von Gagern
Extended setup script: dependencies, classifiers, dates and readme.
8
# see http://docs.python.org/distutils/setupscript.html#meta-data
9
# and http://docs.python.org/distutils/apiref.html
10
# for a list of meta data to be included here.
11
setup(
12
    name='TracBzr',
13
    description='Bazaar plugin for Trac',
14
    keywords='trac vcs plugin bazaar bzr',
116 by Martin von Gagern
Forgot to commit version bump.
15
    version='0.4.2',
93 by Martin von Gagern
Extended setup script: dependencies, classifiers, dates and readme.
16
    url='http://launchpad.net/trac-bzr',
17
    license='GPL',
18
    author='Trac Bazaar Team',
19
    author_email='trac-bzr-team@lists.launchpad.net',
20
    long_description=readme,
21
    classifiers=[
22
        'Development Status :: 4 - Beta',
23
        'Environment :: Plugins',
24
        'Environment :: Web Environment',
25
        'Framework :: Trac',
26
        'Intended Audience :: Developers',
27
        'License :: OSI Approved :: GNU General Public License (GPL)',
28
        'Natural Language :: English',
29
        'Operating System :: OS Independent',
30
        'Programming Language :: Python',
31
        'Programming Language :: Python :: 2',
32
        'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
33
        'Topic :: Software Development :: Version Control',
34
        # see http://pypi.python.org/pypi?:action=list_classifiers for more
35
    ],
112.1.1 by Jelmer Vernooij
Add 'bzr close-trac-bugs' command that can automatically set the resolution of
36
    packages=['tracbzr', 'bzrlib.plugins.trac'],
37
    package_dir={'bzrlib.plugins.trac':'bzrplugin'},
93 by Martin von Gagern
Extended setup script: dependencies, classifiers, dates and readme.
38
    entry_points={'trac.plugins': 'bzr = tracbzr.backend'},
87.1.5 by Martin von Gagern
Include templates in distribution.
39
    package_data={'tracbzr': ['templates/*.html']},
97 by Martin von Gagern
Drop dependencies from setup script.
40
#    install_requires=[
111 by Martin von Gagern
Prepare for the 0.4.0 release and official Trac 0.12 support.
41
#        'Trac >=0.10, <0.13',
97 by Martin von Gagern
Drop dependencies from setup script.
42
#        'bzr >= 2.0',
43
#    ],
115.1.2 by Martin von Gagern
Run tests using distribute.
44
    test_suite='tracbzr.tests',
93 by Martin von Gagern
Extended setup script: dependencies, classifiers, dates and readme.
45
)