mirror of
https://github.com/ets-labs/python-dependency-injector.git
synced 2024-11-21 17:16:46 +03:00
aaff333f01
* Update tests * Enable tests on 3.11 * Fix coverage config in tox.ini * feat: re cythonize to support python 3.11 (#646) * feat: re cythonize to support python 3.11 * misc: added tox env for python 3.11 * misc: add classifiers for python 3.11 * fix: skip tests for removed functions * misc: CI updates for python 3.11 Co-authored-by: Roman Mogylatov <rmogilatov@gmail.com> * Update tests and linters job * Update test skip decorators * Fix tox.ini * Update 3.10 to be explicit string literal * Move pypy3 to legacy job * Fix error in resourse typing test * Update publishing job * Update actions and setup-python versions * Update changelog * Update pypy * Update tox.ini with new pypy versions * Update publishing job * Update actions/upload-artifact@v3 * Update ubuntu to 22.04 on docs publishing job * Update actions/download-artifact@v3 and pypa/gh-action-pypi-publish@release/v1 Co-authored-by: Gen Xu <xgbarry@gmail.com>
124 lines
4.1 KiB
Python
124 lines
4.1 KiB
Python
"""`Dependency injector` setup script."""
|
|
|
|
import os
|
|
import re
|
|
|
|
from setuptools import setup, Extension
|
|
|
|
|
|
# Defining setup variables:
|
|
defined_macros = dict()
|
|
defined_macros["CYTHON_CLINE_IN_TRACEBACK"] = 0
|
|
|
|
# Getting description:
|
|
with open("README.rst") as readme_file:
|
|
description = readme_file.read()
|
|
|
|
# Getting requirements:
|
|
with open("requirements.txt") as requirements_file:
|
|
requirements = requirements_file.readlines()
|
|
|
|
# Getting version:
|
|
with open("src/dependency_injector/__init__.py") as init_file:
|
|
version = re.search("__version__ = \"(.*?)\"", init_file.read()).group(1)
|
|
|
|
# Adding debug options:
|
|
if os.environ.get("DEPENDENCY_INJECTOR_DEBUG_MODE") == "1":
|
|
defined_macros["CYTHON_TRACE"] = 1
|
|
defined_macros["CYTHON_TRACE_NOGIL"] = 1
|
|
defined_macros["CYTHON_CLINE_IN_TRACEBACK"] = 1
|
|
|
|
|
|
setup(name="dependency-injector",
|
|
version=version,
|
|
description="Dependency injection framework for Python",
|
|
long_description=description,
|
|
author="Roman Mogylatov",
|
|
author_email="rmogilatov@gmail.com",
|
|
maintainer="Roman Mogylatov",
|
|
maintainer_email="rmogilatov@gmail.com",
|
|
url="https://github.com/ets-labs/python-dependency-injector",
|
|
download_url="https://pypi.python.org/pypi/dependency_injector",
|
|
packages=[
|
|
"dependency_injector",
|
|
"dependency_injector.ext",
|
|
],
|
|
package_dir={
|
|
"": "src",
|
|
},
|
|
package_data={
|
|
"dependency_injector": ["*.pxd", "*.pyi", "py.typed"],
|
|
},
|
|
ext_modules=[
|
|
Extension("dependency_injector.containers",
|
|
["src/dependency_injector/containers.c"],
|
|
define_macros=list(defined_macros.items()),
|
|
extra_compile_args=["-O2"]),
|
|
Extension("dependency_injector.providers",
|
|
["src/dependency_injector/providers.c"],
|
|
define_macros=list(defined_macros.items()),
|
|
extra_compile_args=["-O2"]),
|
|
Extension("dependency_injector._cwiring",
|
|
["src/dependency_injector/_cwiring.c"],
|
|
define_macros=list(defined_macros.items()),
|
|
extra_compile_args=["-O2"]),
|
|
],
|
|
install_requires=requirements,
|
|
extras_require={
|
|
"yaml": [
|
|
"pyyaml",
|
|
],
|
|
"pydantic": [
|
|
"pydantic",
|
|
],
|
|
"flask": [
|
|
"flask",
|
|
],
|
|
"aiohttp": [
|
|
"aiohttp",
|
|
],
|
|
},
|
|
zip_safe=True,
|
|
license="BSD New",
|
|
platforms=["any"],
|
|
keywords=[
|
|
"Dependency injection",
|
|
"DI",
|
|
"Inversion of Control",
|
|
"IoC",
|
|
"Factory",
|
|
"Singleton",
|
|
"Design patterns",
|
|
"Flask",
|
|
],
|
|
classifiers=[
|
|
"Development Status :: 5 - Production/Stable",
|
|
"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.5",
|
|
"Programming Language :: Python :: 3.6",
|
|
"Programming Language :: Python :: 3.7",
|
|
"Programming Language :: Python :: 3.8",
|
|
"Programming Language :: Python :: 3.9",
|
|
"Programming Language :: Python :: 3.10",
|
|
"Programming Language :: Python :: 3.11",
|
|
"Programming Language :: Python :: Implementation :: CPython",
|
|
"Programming Language :: Python :: Implementation :: PyPy",
|
|
"Framework :: AsyncIO",
|
|
"Framework :: Bottle",
|
|
"Framework :: Django",
|
|
"Framework :: Flask",
|
|
"Framework :: Pylons",
|
|
"Framework :: Pyramid",
|
|
"Framework :: Pytest",
|
|
"Framework :: TurboGears",
|
|
"Topic :: Software Development",
|
|
"Topic :: Software Development :: Libraries",
|
|
"Topic :: Software Development :: Libraries :: Python Modules",
|
|
])
|