forked from viewflow/viewflow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
44 lines (42 loc) · 1.48 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
38
39
40
41
42
43
44
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup
setup(
name='django-viewflow',
version='1.2.2',
author='Mikhail Podgurskiy',
author_email='[email protected]',
description='Reusable workflow library for django',
long_description=open('README.rst').read(),
platforms=['Any'],
keywords=['workflow', 'django', 'bpm', 'automaton'],
url='http://github.com/viewflow/viewflow',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Natural Language :: English',
'Operating System :: OS Independent',
'Framework :: Django',
'Framework :: Django :: 1.11',
'Framework :: Django :: 2.0',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Topic :: Software Development :: Libraries :: Python Modules',
'License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)',
],
install_requires=[
'Django>=1.11',
'django-filter>=1.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)