Version 0.1.0
This commit is contained in:
parent
19050c756d
commit
c7adfaa4f0
3 changed files with 16 additions and 4 deletions
11
django_pyvows/version.py
Normal file
11
django_pyvows/version.py
Normal 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)
|
7
setup.py
7
setup.py
|
@ -8,12 +8,15 @@
|
||||||
# http://www.opensource.org/licenses/mit-license
|
# http://www.opensource.org/licenses/mit-license
|
||||||
# Copyright (c) 2011 Rafael Caricio rafael@caricio.com
|
# Copyright (c) 2011 Rafael Caricio rafael@caricio.com
|
||||||
|
|
||||||
|
import os
|
||||||
from setuptools import setup
|
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(
|
setup(
|
||||||
name = 'django-pyvows',
|
name = 'django-pyvows',
|
||||||
version = __version__,
|
version = '.'.join([str(item) for item in version.__version__]),
|
||||||
description = "django-pyvows are pyvows extensions to django web framework.",
|
description = "django-pyvows are pyvows extensions to django web framework.",
|
||||||
long_description = """
|
long_description = """
|
||||||
django-pyvows are pyvows extensions to django web framework.
|
django-pyvows are pyvows extensions to django web framework.
|
||||||
|
|
|
@ -7,5 +7,3 @@
|
||||||
# Licensed under the MIT license:
|
# Licensed under the MIT license:
|
||||||
# http://www.opensource.org/licenses/mit-license
|
# http://www.opensource.org/licenses/mit-license
|
||||||
# Copyright (c) 2011 Rafael Caricio rafael@caricio.com
|
# Copyright (c) 2011 Rafael Caricio rafael@caricio.com
|
||||||
|
|
||||||
__version__ = '0.1.0'
|
|
||||||
|
|
Reference in a new issue