Files
SpiffWorkflow/setup.py
Dan 1fa88aa73f Slight improvement to the metrics class.
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.
2021-11-29 17:36:31 -05:00

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'
])