forked from viewflow/django-fsm
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
30 lines (28 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
27
28
29
30
from setuptools import setup
try:
long_description = open('README.md').read()
except IOError:
long_description = ''
setup(
name='django-fsm',
version='1.3.0',
description='Django friendly finite state machine support.',
author='Mikhail Podgurskiy',
author_email='[email protected]',
url='http://github.com/kmmbvnr/djang-fsm',
keywords = "django",
packages=['django_fsm', 'django_fsm.db', 'django_fsm.db.fields'],
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',
'Framework :: Django',
]
)