-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
27 lines (26 loc) · 962 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
import easy_ioc
setup(name='easy_ioc',
version=easy_ioc.__version__,
description='Python Dependencies Injection Library',
author='BingoXuan',
url='https://github.com/BingoXuan/easy_ioc',
packages=['easy_ioc'],
classifiers=[
"Development Status :: 5 - Production/Stable",
"Topic :: Utilities",
"Topic :: Software Development :: Libraries",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Typing :: Typed",
],
python_requires='>=3.5',
long_description="""
a simple dependency-injection python library,\
which implemented with pure python and meta-programming.\
It is non-invasive and progressive to refactor \
your code without learning complex concepts.\
visit https://github.com/BingoXuan/easy_ioc for \
more information
"""
)