-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (27 loc) · 741 Bytes
/
setup.py
File metadata and controls
29 lines (27 loc) · 741 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
from setuptools import setup
VERSION = '0.2.1'
PACKAGE = 'ticketreminder'
setup(
name = 'TicketReminderPlugin',
version = VERSION,
description = "Allows to configure reminders for tickets in Trac.",
author = 'Mitar',
author_email = 'mitar.trac@tnode.com',
url = 'https://github.com/trac-hacks/trac-ticketreminder',
keywords = 'trac plugin',
license = "AGPLv3",
packages = [PACKAGE],
include_package_data = True,
package_data = {
PACKAGE: [
'htdocs/css/*.css',
'htdocs/js/*.js',
'templates/*.html',
],
},
install_requires = [],
zip_safe = False,
entry_points = {
'trac.plugins': '%s = %s' % (PACKAGE, PACKAGE),
},
)