diff --git a/setup.cfg b/setup.cfg new file mode 100644 index 0000000..01bb954 --- /dev/null +++ b/setup.cfg @@ -0,0 +1,3 @@ +[egg_info] +tag_build = dev +tag_svn_revision = true diff --git a/setup_egg.py b/setup_egg.py new file mode 100644 index 0000000..eeab4ba --- /dev/null +++ b/setup_egg.py @@ -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: -*- + """, + )