forked from trac-hacks/trac-ticketreminder
-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
43 lines (40 loc) · 1.23 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
#!/usr/bin/env python
from setuptools import setup
VERSION = '0.2.2'
PACKAGE = 'ticketreminder'
setup(
name = 'TicketReminderPlugin',
version = VERSION,
description = "Allows to configure reminders for tickets in Trac.",
author = 'Mitar',
author_email = '[email protected]',
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 = ['Trac'],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Plugins',
'Environment :: Web Environment',
'Framework :: Trac',
'License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)'
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
],
zip_safe = False,
entry_points = {
'trac.plugins': '%s = %s' % (PACKAGE, PACKAGE),
},
)