2015-08-31 13:31:38 +00:00
|
|
|
"""`Dependency injector` setup script."""
|
2015-01-04 13:54:25 +00:00
|
|
|
|
2016-11-02 15:21:40 +00:00
|
|
|
import os
|
2015-10-23 12:20:25 +00:00
|
|
|
import re
|
|
|
|
|
2016-10-31 09:31:56 +00:00
|
|
|
from setuptools import setup, Extension
|
2015-01-04 13:54:25 +00:00
|
|
|
|
2015-04-02 22:01:05 +00:00
|
|
|
|
2016-11-02 22:06:14 +00:00
|
|
|
# Defining setup variables:
|
2017-08-08 16:27:33 +00:00
|
|
|
defined_macros = dict()
|
|
|
|
defined_macros['CYTHON_CLINE_IN_TRACEBACK'] = 0
|
2016-11-02 22:06:14 +00:00
|
|
|
|
2015-10-23 12:20:25 +00:00
|
|
|
# Getting description:
|
2015-04-02 21:31:26 +00:00
|
|
|
with open('README.rst') as readme_file:
|
2020-07-11 17:18:52 +00:00
|
|
|
description = readme_file.read()
|
2015-01-05 09:11:21 +00:00
|
|
|
|
2015-10-23 12:20:25 +00:00
|
|
|
# Getting requirements:
|
2016-12-04 11:13:29 +00:00
|
|
|
with open('requirements.txt') as requirements_file:
|
|
|
|
requirements = requirements_file.readlines()
|
2015-01-04 13:54:25 +00:00
|
|
|
|
2015-10-23 12:20:25 +00:00
|
|
|
# Getting version:
|
2016-11-02 20:58:30 +00:00
|
|
|
with open('src/dependency_injector/__init__.py') as init_file:
|
2016-12-04 11:13:29 +00:00
|
|
|
version = re.search('__version__ = \'(.*?)\'', init_file.read()).group(1)
|
2015-01-04 13:54:25 +00:00
|
|
|
|
2016-11-02 22:06:14 +00:00
|
|
|
# Adding debug options:
|
2016-11-02 15:21:40 +00:00
|
|
|
if os.environ.get('DEPENDENCY_INJECTOR_DEBUG_MODE') == '1':
|
2017-08-08 16:27:33 +00:00
|
|
|
defined_macros['CYTHON_TRACE'] = 1
|
|
|
|
defined_macros['CYTHON_TRACE_NOGIL'] = 1
|
|
|
|
defined_macros['CYTHON_CLINE_IN_TRACEBACK'] = 1
|
2016-11-02 15:21:40 +00:00
|
|
|
|
2015-01-04 13:54:25 +00:00
|
|
|
|
2016-09-06 10:18:43 +00:00
|
|
|
setup(name='dependency-injector',
|
2015-04-03 13:11:05 +00:00
|
|
|
version=version,
|
2020-10-25 00:56:32 +00:00
|
|
|
description='Dependency injection framework for Python',
|
2015-04-03 13:11:05 +00:00
|
|
|
long_description=description,
|
2021-09-28 18:59:11 +00:00
|
|
|
author='Roman Mogylatov',
|
2015-04-03 13:11:05 +00:00
|
|
|
author_email='rmogilatov@gmail.com',
|
2020-10-25 00:56:32 +00:00
|
|
|
maintainer='Roman Mogylatov',
|
2015-04-03 13:11:05 +00:00
|
|
|
maintainer_email='rmogilatov@gmail.com',
|
2016-04-25 08:07:47 +00:00
|
|
|
url='https://github.com/ets-labs/python-dependency-injector',
|
2016-03-17 00:02:17 +00:00
|
|
|
download_url='https://pypi.python.org/pypi/dependency_injector',
|
2020-06-25 01:01:33 +00:00
|
|
|
packages=[
|
|
|
|
'dependency_injector',
|
2020-07-11 16:15:00 +00:00
|
|
|
'dependency_injector.ext',
|
2020-06-25 01:01:33 +00:00
|
|
|
],
|
2016-11-02 20:58:30 +00:00
|
|
|
package_dir={
|
2016-11-02 21:55:14 +00:00
|
|
|
'': 'src',
|
2016-11-02 20:58:30 +00:00
|
|
|
},
|
2020-06-25 01:01:33 +00:00
|
|
|
package_data={
|
2020-08-27 02:24:20 +00:00
|
|
|
'dependency_injector': ['*.pxd', '*.pyi', 'py.typed'],
|
2020-06-25 01:01:33 +00:00
|
|
|
},
|
2016-10-31 09:31:56 +00:00
|
|
|
ext_modules=[
|
2017-03-26 13:40:41 +00:00
|
|
|
Extension('dependency_injector.containers',
|
|
|
|
['src/dependency_injector/containers.c'],
|
2017-08-08 16:27:33 +00:00
|
|
|
define_macros=list(defined_macros.items()),
|
2017-03-26 13:40:41 +00:00
|
|
|
extra_compile_args=['-O2']),
|
2017-03-25 20:38:48 +00:00
|
|
|
Extension('dependency_injector.providers',
|
|
|
|
['src/dependency_injector/providers.c'],
|
2017-08-08 16:27:33 +00:00
|
|
|
define_macros=list(defined_macros.items()),
|
2016-11-04 13:48:26 +00:00
|
|
|
extra_compile_args=['-O2']),
|
2016-10-31 09:31:56 +00:00
|
|
|
],
|
2020-06-25 01:01:33 +00:00
|
|
|
install_requires=requirements,
|
|
|
|
extras_require={
|
|
|
|
'yaml': [
|
|
|
|
'pyyaml',
|
|
|
|
],
|
2021-02-03 14:21:32 +00:00
|
|
|
'pydantic': [
|
|
|
|
'pydantic',
|
|
|
|
],
|
2020-07-11 16:15:00 +00:00
|
|
|
'flask': [
|
|
|
|
'flask',
|
|
|
|
],
|
2020-07-28 23:19:05 +00:00
|
|
|
'aiohttp': [
|
|
|
|
'aiohttp',
|
|
|
|
],
|
2016-11-02 22:56:30 +00:00
|
|
|
},
|
2015-04-03 13:11:05 +00:00
|
|
|
zip_safe=True,
|
2016-10-31 09:31:56 +00:00
|
|
|
license='BSD New',
|
|
|
|
platforms=['any'],
|
2015-04-03 13:21:42 +00:00
|
|
|
keywords=[
|
2016-03-17 00:02:17 +00:00
|
|
|
'Dependency injection',
|
2016-11-11 16:36:35 +00:00
|
|
|
'DI',
|
2016-03-17 00:02:17 +00:00
|
|
|
'Inversion of Control',
|
2016-11-11 16:36:35 +00:00
|
|
|
'IoC',
|
2017-02-01 11:07:44 +00:00
|
|
|
'Factory',
|
|
|
|
'Singleton',
|
|
|
|
'Design patterns',
|
2020-07-11 16:15:00 +00:00
|
|
|
'Flask',
|
2015-04-03 13:21:42 +00:00
|
|
|
],
|
2015-04-03 13:11:05 +00:00
|
|
|
classifiers=[
|
2015-11-26 13:50:12 +00:00
|
|
|
'Development Status :: 5 - Production/Stable',
|
2015-04-03 13:11:05 +00:00
|
|
|
'Intended Audience :: Developers',
|
|
|
|
'License :: OSI Approved :: BSD License',
|
|
|
|
'Operating System :: OS Independent',
|
|
|
|
'Programming Language :: Python',
|
|
|
|
'Programming Language :: Python :: 2',
|
|
|
|
'Programming Language :: Python :: 2.7',
|
|
|
|
'Programming Language :: Python :: 3',
|
|
|
|
'Programming Language :: Python :: 3.4',
|
2015-10-12 15:20:20 +00:00
|
|
|
'Programming Language :: Python :: 3.5',
|
2017-01-29 22:12:08 +00:00
|
|
|
'Programming Language :: Python :: 3.6',
|
2018-08-16 21:17:47 +00:00
|
|
|
'Programming Language :: Python :: 3.7',
|
2020-01-26 20:00:21 +00:00
|
|
|
'Programming Language :: Python :: 3.8',
|
2020-10-29 19:44:14 +00:00
|
|
|
'Programming Language :: Python :: 3.9',
|
2015-04-03 13:11:05 +00:00
|
|
|
'Programming Language :: Python :: Implementation :: CPython',
|
|
|
|
'Programming Language :: Python :: Implementation :: PyPy',
|
2020-07-20 21:02:32 +00:00
|
|
|
'Framework :: AsyncIO',
|
|
|
|
'Framework :: Bottle',
|
|
|
|
'Framework :: Django',
|
|
|
|
'Framework :: Flask',
|
|
|
|
'Framework :: Pylons',
|
|
|
|
'Framework :: Pyramid',
|
|
|
|
'Framework :: Pytest',
|
|
|
|
'Framework :: TurboGears',
|
2015-04-03 13:11:05 +00:00
|
|
|
'Topic :: Software Development',
|
|
|
|
'Topic :: Software Development :: Libraries',
|
|
|
|
'Topic :: Software Development :: Libraries :: Python Modules',
|
|
|
|
])
|