-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·30 lines (27 loc) · 819 Bytes
/
setup.py
File metadata and controls
executable file
·30 lines (27 loc) · 819 Bytes
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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# Copyright (C) 2006 Ashwin Phatak
# Copyright (C) 2007 Dave Gynn (dgynn@optaros.com)
# Copyright (C) 2010 Brian Meeker (meeker.brian@gmail.com)
from setuptools import setup, find_packages
PACKAGE = 'BatchModify'
VERSION = '0.8.0-trac0.12'
setup(
name=PACKAGE, version=VERSION,
description='Allows batch modification of tickets',
author="Brian Meeker", author_email="meeker.brian@gmail.com",
license='BSD', url='http://trac-hacks.org/wiki/BatchModifyPlugin',
packages = ['batchmod'],
package_data={
'batchmod': [
'templates/*.html',
'htdocs/js/*.js',
'htdocs/css/*.css',
]
},
entry_points = {
'trac.plugins': [
'batchmod.web_ui = batchmod.web_ui',
]
}
)