forked from viewflow/viewflow
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
45 lines (43 loc) · 1.36 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup
setup(
name='django-viewflow',
version='0.8.0',
author='Mikhail Podgurskiy',
author_email='[email protected]',
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 :: 2.7',
'Programming Language :: Python :: 3',
'Topic :: Software Development :: Libraries :: Python Modules',
],
install_requires=[
# viewflow
'Django>=1.6',
'singledispatch>=3.0',
'django-fsm>=2.0',
'mock',
# viewflow.test
'django-webtest',
'webtest'
],
packages=['viewflow',
'viewflow.contrib',
'viewflow.flow',
'viewflow.management',
'viewflow.migrations',
'viewflow.south_migrations',
'viewflow.templatetags',
'viewflow.views'],
include_package_data=True)