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
|
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#
# Copyright 2009, Niels Sascha Reedijk <niels.reedijk@gmail.com>
# All rights reserved. Distributed under the terms of the MIT License.
#
from setuptools import setup
setup(
name='TracSubcomponents',
version='1.3.3',
packages=['subcomponents'],
package_data={'subcomponents': [
'htdocs/*.js',
'templates/*.html',
]},
author='Niels Sascha Reedijk',
author_email='niels.reedijk@gmail.com',
description='Provides support for subcomponents in the interface.',
license='MIT',
keywords='trac plugin ticket query components',
url='https://trac-hacks.org/wiki/SubcomponentsPlugin',
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 :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
],
install_requires=['Trac>=1.0dev', ],
entry_points={
'trac.plugins': [
'subcomponents.components_view = subcomponents.components_view',
'subcomponents.web_ui = subcomponents.web_ui',
]
}
)
|