Added the first version number.
This commit is contained in:
parent
8fc7c2ece6
commit
19050c756d
2 changed files with 12 additions and 1 deletions
2
setup.py
2
setup.py
|
@ -13,7 +13,7 @@ from django_pyvows import __version__
|
|||
|
||||
setup(
|
||||
name = 'django-pyvows',
|
||||
version = '.'.join([str(item) for item in __version__]),
|
||||
version = __version__,
|
||||
description = "django-pyvows are pyvows extensions to django web framework.",
|
||||
long_description = """
|
||||
django-pyvows are pyvows extensions to django web framework.
|
||||
|
|
|
@ -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'
|
Reference in a new issue