-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathsetup.py
24 lines (23 loc) · 908 Bytes
/
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
from distutils.core import setup
from setuptools import find_packages
setup(
name='zengine',
version='0.0.9',
url='https://github.com/zetaops/zengine',
license='GPL',
packages=find_packages(exclude=['tests', 'tests.*']),
author='Evren Esat Ozkan',
author_email='evrenesat@zetaops.io',
description='BPMN workflow based REST framework with advanced '
'permissions and extensible scaffolding features',
install_requires=['beaker', 'passlib', 'falcon', 'beaker_extensions',
'redis', 'SpiffWorkflow', 'pyoko'],
dependency_links=[
'git+https://github.com/didip/beaker_extensions.git#egg=beaker_extensions',
'git+https://github.com/zetaops/SpiffWorkflow.git#egg=SpiffWorkflow',
'git+https://github.com/zetaops/pyoko.git#egg=pyoko',
],
package_data = {
'zengine': ['diagrams/*.bpmn'],
}
)