-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
26 lines (25 loc) · 880 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
25
26
from __future__ import absolute_import
from setuptools import setup, find_packages
from workflow import __version__
setup(name="django-workflow",
version=__version__,
description="Workflow editor for Django",
long_description="Edit and Manage workflows to associate to your Django objects",
author="SimplyOpen",
author_email="[email protected]",
url="https://github.com/simplyopen-it/django-workflow",
packages=find_packages(),
install_requires=[
'Django>=1.7',
'django-extensions>=1.3.10',
"six",
],
include_package_data = True,
classifiers=[
"Development Status :: 5 - Production/Stable",
"Framework :: Django",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Topic :: Software Development",
],
)