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

Major performance improvement by reducing the number of times we convert to and from Box. Bumped to version 1.1 to keep in line with our tags in github.
38 lines
1.3 KiB
Python
38 lines
1.3 KiB
Python
# -*- coding: utf-8 -*-
|
|
from __future__ import division
|
|
|
|
import pathlib
|
|
import sys
|
|
|
|
sys.path.insert(0, '.')
|
|
sys.path.insert(0, 'SpiffWorkflow')
|
|
from setuptools import setup, find_packages
|
|
|
|
# The directory containing this file
|
|
HERE = pathlib.Path(__file__).parent
|
|
|
|
# The text of the README file
|
|
README = (HERE / "README.md").read_text()
|
|
|
|
setup(name='SpiffWorkflow',
|
|
version='1.1.0',
|
|
description='A workflow framework and BPMN/DMN Processor',
|
|
long_description=README,
|
|
long_description_content_type="text/markdown",
|
|
author='Sartography',
|
|
author_email='dan@sartography.com',
|
|
license='lGPLv2',
|
|
packages=find_packages(exclude=['tests', 'tests.*']),
|
|
install_requires=['future', 'configparser', 'lxml', 'celery', 'dateparser', 'pytz'],
|
|
keywords='spiff workflow bpmn engine',
|
|
url='https://github.com/sartography/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'
|
|
])
|