forked from viewflow/django-fsm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
31 lines (29 loc) · 942 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
27
28
29
30
31
from setuptools import setup
try:
long_description = open('README.md').read()
except IOError:
long_description = ''
setup(
name='django-fsm',
version='2.0.1',
description='Django friendly finite state machine support.',
author='Mikhail Podgurskiy',
author_email='[email protected]',
url='http://github.com/kmmbvnr/django-fsm',
keywords="django",
packages=['django_fsm', 'django_fsm.management', 'django_fsm.management.commands'],
include_package_data=True,
zip_safe=False,
license='MIT License',
platforms=['any'],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Framework :: Django',
]
)