forked from viewflow/viewflow
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
41 lines (39 loc) · 1.26 KB
/
setup.py
File metadata and controls
41 lines (39 loc) · 1.26 KB
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
38
39
40
41
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup
setup(
name='django-viewflow',
version='0.12.0',
author='Mikhail Podgurskiy',
author_email='kmmbvnr@gmail.com',
description='Reusable workflow library for django',
long_description=open('README.rst').read(),
license='AGPLv3',
platforms=['Any'],
keywords=['workflow', 'django', 'bpm', 'automaton'],
url='http://github.com/viewflow/viewflow',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Topic :: Software Development :: Libraries :: Python Modules',
],
install_requires=[
# viewflow
'Django>=1.8',
'django-fsm>=2.0',
],
packages=['viewflow',
'viewflow.flow',
'viewflow.flow.views',
'viewflow.management',
'viewflow.migrations',
'viewflow.nodes',
'viewflow.templatetags',
'viewflow.frontend',
'viewflow.frontend.templatetags'],
include_package_data=True,
zip_safe=False)