Version 0.1.0

This commit is contained in:
Rafael Caricio 2011-08-18 11:41:02 -03:00
parent 19050c756d
commit c7adfaa4f0
3 changed files with 16 additions and 4 deletions

11
django_pyvows/version.py Normal file
View file

@ -0,0 +1,11 @@
#!/usr/bin/python
# -*- coding: utf-8 -*-
# django-pyvows extensions
# https://github.com/rafaelcaricio/django-pyvows
# Licensed under the MIT license:
# http://www.opensource.org/licenses/mit-license
# Copyright (c) 2011 Rafael Caricio rafael@caricio.com
__version__ = (0, 1, 0)

View file

@ -8,12 +8,15 @@
# http://www.opensource.org/licenses/mit-license
# Copyright (c) 2011 Rafael Caricio rafael@caricio.com
import os
from setuptools import setup
from django_pyvows import __version__
from imp import load_source
version = load_source('version', os.path.join("django_pyvows", "version.py"))
setup(
name = 'django-pyvows',
version = __version__,
version = '.'.join([str(item) for item in version.__version__]),
description = "django-pyvows are pyvows extensions to django web framework.",
long_description = """
django-pyvows are pyvows extensions to django web framework.

View file

@ -7,5 +7,3 @@
# Licensed under the MIT license:
# http://www.opensource.org/licenses/mit-license
# Copyright (c) 2011 Rafael Caricio rafael@caricio.com
__version__ = '0.1.0'