forked from ivankorobkov/python-inject
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
28f114b
commit e3f4e48
Showing
2 changed files
with
16 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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, \ | ||
|
@@ -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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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', | ||
|
@@ -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() | ||
) |