-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
43 lines (36 loc) · 1.16 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
# -*- coding: utf-8 -*-
#
# Copyright (C) 2008 Noah Kantrowitz
# All rights reserved.
#
# This software is licensed as described in the file COPYING, which
# you should have received as part of this distribution.
import os
from setuptools import setup
setup(
name = 'TracTxomonTickets',
version = '0.0.1',
packages = ['ticket'],
author = 'Javier Domingo',
author_email = '[email protected]',
description = 'Modified ticket system to provide privacy for Trac.',
long_description = open(os.path.join(os.path.dirname(__file__), 'README')).read(),
license = 'GPLv3',
keywords = 'trac plugin ticket privacy permissions security',
url = '',
download_url = '',
classifiers = [
'Framework :: Trac',
],
install_requires = ['Trac'],
entry_points = """
[trac.plugins]
txomon.ticket.admin = txomon.ticket.admin
txomon.ticket.batch = txomon.ticket.batch
txomon.ticket.query = txomon.ticket.query
txomon.ticket.report = txomon.ticket.report
txomon.ticket.roadmap = txomon.ticket.roadmap
txomon.ticket.web_ui = txomon.ticket.web_ui
""",
)