forked from vikingco/django-states2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
28 lines (25 loc) · 882 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
from setuptools import setup, find_packages
import django_states
LONG_DESCRIPTION = """\
State engine for django models.
Define state transitions for models and keep track of each instance's state.
"""
setup(
name="django-states",
version=django_states.__version__,
url='https://github.com/citylive/django-states2',
license='BSD',
description="State machine for django models",
long_description=LONG_DESCRIPTION,
author='Jonathan Slenders, Gert van Gool, Maarten Timmerman, Steven (rh0dium)',
author_email='[email protected]',
packages=find_packages('.'),
#package_dir={'': 'templates/*'},
classifiers=[
'Intended Audience :: Developers',
'Programming Language :: Python',
'Operating System :: OS Independent',
'Environment :: Web Environment',
'Framework :: Django',
],
)