Skip to content

Commit

Permalink
Merge pull request #89 from vikingco/task/MVBE-7482/fix-setup-py
Browse files Browse the repository at this point in the history
Fix naming to django-states2
  • Loading branch information
Duologic committed May 3, 2016
2 parents 4f18808 + ab9d02a commit 59f973b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 12 deletions.
7 changes: 0 additions & 7 deletions django_states/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,3 @@
State transitions can be logged for objects.
"""
from __future__ import absolute_import
from six.moves import map

#: The version list
VERSION = (1, 6, 4)

#: The actual version number, used by python (and shown in sentry)
__version__ = '.'.join(map(str, VERSION))
8 changes: 3 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,13 @@

from setuptools import setup, find_packages

import django_states

sys.path.insert(0, os.path.dirname(__file__))


setup(
name="django-states",
version=django_states.__version__,
url='https://github.com/citylive/django-states2',
name="django-states2",
version='1.6.4',
url='https://github.com/vikingco/django-states2',
license='BSD',
description="State machine for django models",
long_description=open(os.path.join(os.path.dirname(__file__), 'README.rst')).read(),
Expand Down

0 comments on commit 59f973b

Please sign in to comment.