-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
31 lines (29 loc) · 869 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
28
29
30
31
from setuptools import setup
setup(
name='IlluminateCore',
version='1.0.0',
url='https://github.com/tonyhhyip/py-illuminate-core',
license='MIT',
author='Tony Yip',
author_email='[email protected]',
description='Dependency Container Injection Core',
zip_safe=False,
classifiers=[
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3.6',
'Topic :: Dependency Injection'
],
packages=[
'illuminate_core',
'illuminate_core.container',
'illuminate_core.contract',
'illuminate_core.events',
'illuminate_core.kernel',
'illuminate_core.service',
'illuminate_core.support',
],
install_requires=[],
include_package_data=True
)