-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
42 lines (41 loc) · 1.6 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
# vim: set fileencoding=utf-8 sw=4 sts=4 ts=8 et :vim
import os
from setuptools import setup, find_packages
setup(
name = 'TicketHistory',
version = '0.1',
description = "Various plugins that display the history of a group of tickets in a time interval",
long_description = open(os.path.join(os.path.dirname(__file__), 'README.md')).read(),
classifiers = [
'Development Status :: 1 - Planning',
'Environment :: Plugins',
'Environment :: Web Environment',
'Framework :: Trac',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Programming Language :: Python'
],
keywords = 'trac plugin history board',
author = 'Marko Mahnič',
author_email = '',
url = 'http://github.com/mmahnic/ticket-history',
license = 'MIT License',
packages = find_packages(exclude=['ez_setup', 'examples', 'tickethistory.test']),
package_data = {
'tickethistory': [
'templates/*.html',
'htdocs/css/*.css',
'htdocs/css/images/*.png',
'htdocs/js/*.js',
'htdocs/js/libs/*.js'
]
},
include_package_data = True,
zip_safe = False,
install_requires = ['Trac'],
entry_points = {
"trac.plugins": [
'tickethistory = tickethistory'
]
},
)