-
Notifications
You must be signed in to change notification settings - Fork 20
/
setup.py
52 lines (45 loc) · 1.85 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
52
# -*- coding: UTF-8 -*-
from distutils.core import setup
from setuptools import find_packages
import time
_version = "1.3"
_packages = find_packages(exclude=["*.tests", "*.tests.*", "tests.*", "tests", "example"])
# common dependencies
_install_requires = [
'django>=1.4',
'six'
]
_short_description = "django-flows keeps state and position in complicated flows of logic, allowing optional " \
"branches and complicated paths through a series of individual user actions."
_long_description = """
django-flows can best be described as 'wizards on steroids'. Its purpose is to keep state and position
in complicated flows of logic, allowing optional branches and complicated paths through a series of
individual user actions.
django-flows makes it possible to specify subsections of functionality and group them together later.
It recognises that, at the core, there are several user actions such as logging in, or entering a credit
card number, and that the web application needs to group these actions in such a way that all state
required to make a purchase, for example, is obtained. It also seeks to make these actions reusable,
and to group related actions together into larger 'user flows'.
"""
_classifiers = (
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 2.7',
)
setup(
name='django-flows',
url='https://github.com/carlio/django-flows',
author='Carl Crowder',
author_email='django-flows@carlcrowder.com',
description=_short_description,
long_description=_long_description,
version=_version,
packages=_packages,
install_requires=_install_requires,
license='BSD',
keywords="django",
classifiers=_classifiers
)