forked from ivankorobkov/python-inject
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
27 lines (25 loc) · 1009 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
from distutils.core import setup
setup(
name='python-inject',
version='2.0-beta',
url='http://code.google.com/p/python-inject/',
author='Ivan Korobkov',
author_email='[email protected]',
description='Python dependency injection framework',
license='MIT License',
package_dir={'': 'src'},
packages=['inject'],
keywords=['injection', 'ioc', 'inversion of control',
'dependency injection', 'loose coupling'],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2.4',
'Programming Language :: Python :: 2.5',
'Programming Language :: Python :: 2.6',
'Topic :: Software Development :: Libraries :: Python Modules'],
long_description=open('README.rst', 'r').read()
)