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', |
|
99.2.17
by Martin von Gagern
Releasing 0.3.3 |
15 |
version='0.3.3', |
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 |
],
|
|
36 |
packages=['tracbzr'], |
|
37 |
entry_points={'trac.plugins': 'bzr = tracbzr.backend'}, |
|
97
by Martin von Gagern
Drop dependencies from setup script. |
38 |
# install_requires=[
|
39 |
# 'Trac >=0.10, <0.12',
|
|
40 |
# 'bzr >= 2.0',
|
|
41 |
# ],
|
|
93
by Martin von Gagern
Extended setup script: dependencies, classifiers, dates and readme. |
42 |
)
|