-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
31 lines (28 loc) · 1.05 KB
/
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
28
29
30
31
from distutils.core import setup
import os
with open(os.path.join(os.path.dirname(__file__), 'README.rst')) as readme:
long_description = readme.read()
from dic import __version__
setup(
name='dic',
version=__version__,
author='Zachary Sims',
author_email='[email protected]',
packages=['dic', 'dic.test'],
scripts=[],
url='https://github.com/zsims/dic',
license='LICENSE.txt',
description='Dependency Injection Container for Python 3+. Uses Python 3 annotations to provide hints for the components that should be injected.',
long_description=long_description,
install_requires=[],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Topic :: Software Development :: Libraries :: Application Frameworks',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
],
keywords='development design ioc di',
)