Skip to content

Commit

Permalink
Fixed import dependancy in setup.py. bumped semver to 1.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Fergal Walsh committed Jul 25, 2014
1 parent 37911d1 commit d0638d1
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 7 deletions.
2 changes: 1 addition & 1 deletion pico/__init__.py
Expand Up @@ -6,7 +6,7 @@
"""

__author__ = 'Fergal Walsh'
__version__ = '1.4.0'
__version__ = '1.4.1'

import json
import os
Expand Down
11 changes: 5 additions & 6 deletions setup.py
Expand Up @@ -4,8 +4,6 @@
import os
import sys

import pico

# Borrowed from Django
class osx_install_data(install_data):
# On MacOS, the platform-specific lib dir is /System/Library/Framework/Python/.../
Expand Down Expand Up @@ -69,17 +67,18 @@ def fullsplit(path, result=None):
file_info[0] = '\\PURELIB\\%s' % file_info[0]


version = '1.4.1'

setup(
name='pico',
version=pico.__version__,
version=version,
description='Pico Web Application Framework',
author='Fergal Walsh',
url='http://github.com/fergalwalsh/pico',
download_url = 'https://github.com/fergalwalsh/pico/tarball/%s'%pico.__version__,
download_url='https://github.com/fergalwalsh/pico/tarball/%s' % version,
packages=packages,
install_requires=['wrapt >= 1.8.0'],
data_files = data_files,
cmdclass = cmdclasses
data_files=data_files,
cmdclass=cmdclasses
)

0 comments on commit d0638d1

Please sign in to comment.