-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·40 lines (35 loc) · 976 Bytes
/
setup.py
File metadata and controls
executable file
·40 lines (35 loc) · 976 Bytes
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
#!/usr/bin/env python
"""
License: BSD
(c) 2005-2008 ::: Alec Thomas (alec@swapoff.org)
(c) 2009 ::: www.CodeResort.com - BV Network AS (simon-code@bvnetwork.no)
"""
import sys
from setuptools import setup, find_packages
try :
import crypt
except ImportError :
test_deps = ['twill', 'fcrypt']
else :
test_deps = ['twill']
setup(
name='TracXMLRPC',
version='1.1.2',
license='BSD',
author='Alec Thomas',
author_email='alec@swapoff.org',
maintainer='Odd Simon Simonsen',
maintainer_email='simon-code@bvnetwork.no',
url='http://trac-hacks.org/wiki/XmlRpcPlugin',
description='RPC interface to Trac',
zip_safe=True,
test_suite = 'tracrpc.tests.test_suite',
tests_require = test_deps,
packages=find_packages(exclude=['*.tests']),
package_data={
'tracrpc': ['templates/*.html', 'htdocs/*.js', 'htdocs/*.css']
},
entry_points={
'trac.plugins': 'TracXMLRPC = tracrpc'
},
)