forked from trac-hacks/tracbuildbot
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
33 lines (31 loc) · 1.02 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#
# Copyright (C) 2014 Max Kaskevich <[email protected]>
# All rights reserved.
#
# This software is licensed as described in the file COPYING, which
# you should have received as part of this distribution.
from setuptools import find_packages, setup
setup(
name='TracBuildbotPlugin',
author='Max Kaskevich',
author_email='[email protected]',
version='0.1',
license='BSD 3-Clause',
url="???",
packages=find_packages(exclude=['*.tests*']),
install_requires=[],
entry_points = """
[trac.plugins]
buildbot.web_ui = tracbuildbot.web_ui
buildbot.timeline = tracbuildbot.timeline
buildbot.admin = tracbuildbot.admin
buildbot.env = tracbuildbot.environmentSetup
""",
package_data={'tracbuildbot': ['templates/*.html',
'htdocs/css/*.css',
'htdocs/img/*.gif',
'htdocs/js/*.js',
]},
)