-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
60 lines (56 loc) · 1.85 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
57
58
59
60
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#
# Copyright (c) 2007-2012 Noah Kantrowitz <[email protected]>
# All rights reserved.
#
# This software is licensed as described in the file COPYING, which
# you should have received as part of this distribution.
#
import os
from setuptools import setup
setup(
name='TracMasterTickets',
version='4.0.0',
packages=['mastertickets'],
package_data={
'mastertickets': [
'htdocs/img/*.gif',
'htdocs/img/*.png',
'htdocs/js/*.js',
'htdocs/css/*.css',
'templates/*.html'
]
},
author='Noah Kantrowitz',
author_email='[email protected]',
maintainer='Ryan J Ollos',
maintainer_email='[email protected]',
description='Provides support for ticket dependencies and master tickets.',
long_description=open(os.path.join(os.path.dirname(__file__), 'README')).read(),
license='BSD 3-Clause',
keywords='trac plugin ticket dependencies master',
url='http://trac-hacks.org/wiki/MasterTicketsPlugin',
classifiers=[
'Framework :: Trac',
#'Development Status :: 1 - Planning',
# 'Development Status :: 2 - Pre-Alpha',
# 'Development Status :: 3 - Alpha',
# 'Development Status :: 4 - Beta',
'Development Status :: 5 - Production/Stable',
# 'Development Status :: 6 - Mature',
# 'Development Status :: 7 - Inactive',
'Environment :: Web Environment',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
],
test_suite='mastertickets.tests.suite',
entry_points={
'trac.plugins': [
'mastertickets.api = mastertickets.api',
'mastertickets.web_ui = mastertickets.web_ui',
]
}
)