Files
SpiffWorkflow/setup.py
knipknap f2bcb8655c Fix: Project name.
git-svn-id: https://spiff-workflow.googlecode.com/svn/trunk@15 e8300cfb-4550-0410-bd11-c1b1d6e01c17
2008-12-21 19:04:07 +00:00

38 lines
1.6 KiB
Python

from setuptools import setup, find_packages
from os.path import dirname, join
srcdir = join(dirname(__file__), 'src')
setup(name = 'SpiffWorkflow',
version = '0.3.0',
description = 'A workflow framework based on www.workflowpatterns.com',
long_description = \
"""
Spiff Workflow is a library implementing workflows in pure Python.
It was designed to provide a clean API, and tries to be very easy to use.
You can find a list of supported workflow patterns in the `README file`_
included with the package.
WARNING! Use in a production environment is NOT RECOMMENDED at this time -
this release is meant for development only. Don't blame us if something breaks
because of this software!
.. _README file: http://spiff.googlecode.com/svn/trunk/libs/Workflow/README
""",
author = 'Samuel Abels',
author_email = 'cheeseshop.python.org@debain.org',
license = 'lGPLv2',
package_dir = {'': srcdir},
packages = [p for p in find_packages(srcdir)],
requires = ['sqlalchemy', 'SpiffSignal'],
keywords = 'spiff guard acl acls security authentication object storage',
url = 'http://code.google.com/p/spiff/',
classifiers = [
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)',
'Programming Language :: Python',
'Topic :: Other/Nonlisted Topic',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules'
])