Parent: [2400a3] (diff)

Child: [ddf08c] (diff)

Download this file

setup.py    39 lines (35 with data), 1.1 kB

 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
from setuptools import setup, find_packages
import sys, os
from forgesvn.version import __version__
# "install_requires" can't be safely used with pysvn since pysvn is packaged
# strangely and is not always known to packaging tools (setup.py, pip) even
# when it is installed and can be imported and used
try:
import pysvn
except ImportError:
print '\npysvn must be installed for ForgeSVN to work\n'
raise
setup(name='ForgeSVN',
version=__version__,
description="",
long_description="""\
""",
classifiers=[], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
keywords='',
author='',
author_email='',
url='',
license='',
packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
include_package_data=True,
zip_safe=False,
install_requires=[
# -*- Extra requirements: -*-
'Allura'
],
entry_points="""
# -*- Entry points: -*-
[allura]
SVN=forgesvn.svn_main:ForgeSVNApp
""",
)