Skip to content

Commit

Permalink
fix setup
Browse files Browse the repository at this point in the history
  • Loading branch information
remik committed Sep 6, 2013
1 parent aa5e71d commit bd69bc8
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 5 deletions.
2 changes: 1 addition & 1 deletion basic_cms/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# -*- coding: utf-8 -*-
"""Django Basic CMS module."""
VERSION = (0, 1, 3)
VERSION = (0, 1, 4)
__version__ = '.'.join(map(str, VERSION))
__author__ = "YD Technology"
__contact__ = "team@ydtechnology.com"
Expand Down
7 changes: 7 additions & 0 deletions doc/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,13 @@
This file describe new features and incompatibilites between released version of the CMS.



Release 0.1.4
==============

* Fix setup


Release 0.1.3
==============

Expand Down
8 changes: 4 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,16 +31,16 @@ def local_open(fname):

data_dirs = []
for directory in os.walk('basic_cms/templates'):
data_dirs.append(directory[0][6:] + '/*.*')
data_dirs.append(directory[0][10:] + '/*.*')

for directory in os.walk('basic_cms/media'):
data_dirs.append(directory[0][6:] + '/*.*')
data_dirs.append(directory[0][10:] + '/*.*')

for directory in os.walk('basic_cms/static'):
data_dirs.append(directory[0][6:] + '/*.*')
data_dirs.append(directory[0][10:] + '/*.*')

for directory in os.walk('basic_cms/locale'):
data_dirs.append(directory[0][6:] + '/*.*')
data_dirs.append(directory[0][10:] + '/*.*')

url_schema = 'http://pypi.python.org/packages/source/d/%s/%s-%s.tar.gz'
download_url = url_schema % (package_name, package_name, basic_cms.__version__)
Expand Down

0 comments on commit bd69bc8

Please sign in to comment.