mirror of
https://github.com/sartography/SpiffWorkflow.git
synced 2025-07-30 23:05:38 +08:00

git-svn-id: https://spiff-workflow.googlecode.com/svn/trunk@2 e8300cfb-4550-0410-bd11-c1b1d6e01c17
38 lines
1.6 KiB
Python
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 = 'Spiff Workflow',
|
|
version = '0.1.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'],
|
|
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'
|
|
])
|