forked from sartography/SpiffWorkflow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
37 lines (35 loc) · 1.54 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
# -*- coding: utf-8 -*-
from __future__ import division
import sys
sys.path.insert(0, '.')
sys.path.insert(0, 'SpiffWorkflow')
from version import __version__
from setuptools import setup, find_packages
from os.path import dirname, join
setup(name = 'SpiffWorkflow',
version = __version__,
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.
.. _README file: https://github.com/knipknap/SpiffWorkflow/blob/master/README.md
""",
author = 'Samuel Abels',
author_email = '[email protected]',
license = 'lGPLv2',
packages = find_packages(exclude=['tests', 'tests.*']),
install_requires = ['future', 'configparser', 'lxml'],
keywords = 'spiff workflow bpmn engine',
url = 'https://github.com/knipknap/SpiffWorkflow',
classifiers = [
'Development Status :: 4 - Beta',
'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'
])