This commit is contained in:
Kovid Goyal 2008-01-07 19:51:21 +00:00
parent 908936b0cb
commit 3e5d9cf3f1
15 changed files with 5 additions and 3 deletions

View File

@ -13,4 +13,5 @@
## with this program; if not, write to the Free Software Foundation, Inc.,
## 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
from download import *
from download import *
from Changelog import *

View File

Before

Width:  |  Height:  |  Size: 23 KiB

After

Width:  |  Height:  |  Size: 23 KiB

View File

Before

Width:  |  Height:  |  Size: 37 KiB

After

Width:  |  Height:  |  Size: 37 KiB

View File

Before

Width:  |  Height:  |  Size: 28 KiB

After

Width:  |  Height:  |  Size: 28 KiB

View File

Before

Width:  |  Height:  |  Size: 13 KiB

After

Width:  |  Height:  |  Size: 13 KiB

View File

Before

Width:  |  Height:  |  Size: 6.8 KiB

After

Width:  |  Height:  |  Size: 6.8 KiB

View File

Before

Width:  |  Height:  |  Size: 3.3 KiB

After

Width:  |  Height:  |  Size: 3.3 KiB

View File

Before

Width:  |  Height:  |  Size: 95 KiB

After

Width:  |  Height:  |  Size: 95 KiB

View File

@ -23,9 +23,10 @@ setup(
packages=find_packages(exclude=['*.tests*']),
entry_points = """
[trac.plugins]
download = libprs500.trac.download
download = plugins.download
changelog = plugins.Changelog
""",
package_data={'download': ['templates/*.html',
package_data={'plugins': ['templates/*.html',
'htdocs/css/*.css',
'htdocs/images/*']},
)