work in progress: make loops package work with BlueBream 1.0

This commit is contained in:
Helmut Merz 2011-09-29 19:22:51 +02:00
parent 8dc0d49972
commit 8dced7ecfa
2 changed files with 31 additions and 0 deletions

3
setup.cfg Normal file
View file

@ -0,0 +1,3 @@
[egg_info]
tag_build = dev
tag_svn_revision = true

28
setup_egg.py Normal file
View file

@ -0,0 +1,28 @@
from setuptools import setup, find_packages
import sys, os
version = '2.0'
setup(name='loops',
version=version,
description="loops",
long_description="""\
linked objects for organizational process services""",
classifiers=[], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
keywords='',
author='Helmut Merz',
author_email='helmutm@cy55.de',
url='',
license='GPL',
packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
include_package_data=True,
zip_safe=False,
install_requires=[
# -*- Extra requirements: -*-
'zope.app.securitypolicy',
'cybertools',
],
entry_points="""
# -*- Entry points: -*-
""",
)