-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
56 lines (45 loc) · 1.62 KB
/
setup.py
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
# Copyright (c) 2010
# Miguel Araujo Perez <[email protected]>
# J. Javier Maestro de la Calle <[email protected]>
#
# GNU General Public Licence (GPL)
#
# This work is free software; you can redistribute it and/or modify it under
# the terms of the GNU General Public License as published by the Free Software
# Foundation; either version 2 of the License, or any later version.
#
# This program is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
# details.
#
# GNU GPL v2: http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
# GNU GPL v3: http://www.gnu.org/copyleft/gpl-3.0.html
from setuptools import find_packages, setup
extra = {}
setup(
name = 'TracMercurialChangesetPlugin',
version = "0.4",
description = "Insert Mercurial's changesets into Trac's DB revision table",
author = "Miguel Araujo Perez, J. Javier Maestro de la Calle",
author_email = "[email protected]",
url = "http://github.com/maraujop/TracMercurialChangesetPlugin",
license = "GPL",
packages = find_packages(exclude=['tests*']),
include_package_data = True,
package_data = { 'mercurialchangeset': [
'*.txt'
],
},
zip_safe = True,
keywords = "trac ticket plugin mercurial hg changeset integration",
classifiers = [
'Framework :: Trac',
],
install_requires = [],
entry_points = """
[trac.plugins]
mercurialchangeset.admin = mercurialchangeset.admin
""",
**extra
)