blob: e7389d6408efef504eadec2ec518d78da5e810e9 [file] [log] [blame]
from setuptools import setup, find_packages
import sys, os
from forgeorganization.version import __version__
setup(name='ForgeOrganization',
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.organization]
organization=forgeorganization.organization.main:ForgeOrganizationApp
[allura]
organizationprofile = forgeorganization.organization_profile.organization_main:OrganizationProfileApp
organizationstool=forgeorganization.tool.main:ForgeOrganizationToolApp
""",
)