forked from pcapriotti/github-trac
-
Notifications
You must be signed in to change notification settings - Fork 21
/
setup.py
29 lines (24 loc) · 792 Bytes
/
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
from setuptools import find_packages, setup
# name can be any name. This name will be used to create .egg file.
# name that is used in packages is the one that is used in the trac.ini file.
# use package name as entry_points
setup(
name='GithubPlugin',
version='0.4',
author='Dav Glass',
author_email='[email protected]',
description = "Creates an entry point for a GitHub post-commit hook.",
license = """Unknown Status""",
url = "http://github.com/davglass/github-trac/tree/master",
packages = find_packages(exclude=['*.tests*']),
package_data={'github' : []},
install_requires = [
'simplejson>=2.0.5',
'GitPython>=0.1.6',
],
entry_points = {
'trac.plugins': [
'github = github',
]
}
)