Skip to content

Commit

Permalink
Updated the version to 1.0.1.
Browse files Browse the repository at this point in the history
  • Loading branch information
ivankorobkov committed Jun 17, 2010
1 parent 28f114b commit e3f4e48
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 16 deletions.
6 changes: 3 additions & 3 deletions Source/inject/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -111,9 +111,9 @@ def __init__(self, z, b=inject.super, c=inject.super):
@author: Ivan Korobkov <[email protected]>
@copyright: 2010 Ivan Korobkov
@license: MIT License, see LICENSE
@version: 1.0
@version: 1.0.1
'''
__version__ = '1.0'
__version__ = '1.0.1'


from inject.injections import Attr as attr, \
Expand All @@ -124,4 +124,4 @@ def __init__(self, z, b=inject.super, c=inject.super):
from inject.scopes import \
no as noscope, \
app as appscope, \
req as reqscope
req as reqscope
26 changes: 13 additions & 13 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,18 @@


setup(
name = 'Inject',
version = '1.0',
url = 'http://code.google.com/p/python-inject/',
author = 'Ivan Korobkov',
author_email = '[email protected]',
description = 'Fast python dependency injection',
license = 'MIT License',
package_dir = {'': 'Source'},
packages = ['inject'],
keywords = ['injection', 'ioc', 'inversion of control',
name='Inject',
version='1.0.1',
url='http://code.google.com/p/python-inject/',
author='Ivan Korobkov',
author_email='[email protected]',
description='Fast python dependency injection',
license='MIT License',
package_dir={'': 'Source'},
packages=['inject'],
keywords=['injection', 'ioc', 'inversion of control',
'dependency injection', 'loose coupling'],
classifiers = [
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
Expand All @@ -23,5 +23,5 @@
'Programming Language :: Python :: 2.5',
'Programming Language :: Python :: 2.6',
'Topic :: Software Development :: Libraries :: Python Modules'],
long_description = open('README.rst', 'r').read()
)
long_description=open('README.rst', 'r').read()
)

0 comments on commit e3f4e48

Please sign in to comment.