~ubuntu-branches/debian/sid/trac-bzr/sid

« back to all changes in this revision

Viewing changes to setup.py

  • Committer: Bazaar Package Importer
  • Author(s): Jelmer Vernooij
  • Date: 2009-12-25 15:37:57 UTC
  • mfrom: (1.1.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20091225153757-n8v0lixk6pwxep36
Tags: 0.3.0-1
* New upstream release.
* Add watch file.

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
 
3
3
from setuptools import setup
4
4
 
5
 
TracBzr = 'http://launchpad.net/products/trac-bzr',
 
5
readme=file('README').read()
 
6
readme=readme[:readme.index('\n.. cut long_description here')]
6
7
 
7
 
setup(name='TracBzr',
8
 
      description='Bazaar plugin for Trac',
9
 
      keywords='trac vcs plugin bazaar',
10
 
      version='0.2',
11
 
      url=TracBzr,
12
 
      license='GPL',
13
 
      author='Trac Bazaar Team',
14
 
      author_email='trac-bzr-team@lists.launchpad.net',
15
 
      long_description="""
16
 
      This Trac 0.10+ plugin provides support for the Bazaar Version 
17
 
      Control System. See %s for more details.
18
 
      """ % TracBzr,
19
 
      packages=['tracbzr'],
20
 
      entry_points={'trac.plugins': 'bzr = tracbzr.backend'})
 
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',
 
15
    version='0.3.0',
 
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
    ],
 
36
    packages=['tracbzr'],
 
37
    entry_points={'trac.plugins': 'bzr = tracbzr.backend'},
 
38
#    install_requires=[
 
39
#        'Trac >=0.10, <0.12',
 
40
#        'bzr >= 2.0',
 
41
#    ],
 
42
)