forked from viewflow/viewflow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
51 lines (49 loc) · 1.72 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
45
46
47
48
49
50
51
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup
setup(
name='django-viewflow',
version='1.10.1',
author='Mikhail Podgurskiy',
author_email='kmmbvnr@gmail.com',
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 :: 2.2',
'Framework :: Django :: 3.0',
'Framework :: Django :: 3.1',
'Framework :: Django :: 3.2',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Topic :: Software Development :: Libraries :: Python Modules',
'License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)',
],
install_requires=[
'Django>=2.2',
'django-filter>=1.0',
'django-jsonstore',
'django-annoying',
'six',
],
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)