Skip to content

Commit

Permalink
fix version number and setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
ergo committed Oct 27, 2014
1 parent b15bb9a commit 376a9e0
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
8 changes: 6 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
from setuptools import setup, find_packages
import sys


found_packages = find_packages()
found_packages.append('ziggurat_foundations.migrations.versions')

setup(name='ziggurat_foundations',
version='0.4',
description=""" Set of classes that are reusable across various types of
Expand All @@ -8,12 +13,11 @@
author='Marcin Lulek',
author_email='info@webreactor.eu',
license='BSD',
packages=find_packages(),
packages=found_packages,
zip_safe=True,
include_package_data=True,
package_data={
'': ['*.txt', '*.rst', '*.ini'],
'ziggurat_foundations': ['migrations/versions/*.py'],
},
test_suite='ziggurat_foundations.tests',
install_requires=["sqlalchemy", "cryptacular", "paginate",
Expand Down
2 changes: 1 addition & 1 deletion ziggurat_foundations/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = {'major': 0, 'minor': 1}
__version__ = {'major': 0, 'minor': 4}


def make_passwordmanager():
Expand Down

0 comments on commit 376a9e0

Please sign in to comment.