mirror of
https://github.com/ets-labs/python-dependency-injector.git
synced 2025-02-16 19:40:59 +03:00
Add injections extension to setup script
This commit is contained in:
parent
7559959f35
commit
b413826299
16
setup.py
16
setup.py
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
import re
|
import re
|
||||||
|
|
||||||
from setuptools import setup
|
from setuptools import setup, Extension
|
||||||
|
|
||||||
|
|
||||||
# Getting description:
|
# Getting description:
|
||||||
|
@ -30,12 +30,20 @@ setup(name='dependency-injector',
|
||||||
bugtrack_url='https://github.com/ets-labs/python-dependency-injector' +
|
bugtrack_url='https://github.com/ets-labs/python-dependency-injector' +
|
||||||
'/issues',
|
'/issues',
|
||||||
download_url='https://pypi.python.org/pypi/dependency_injector',
|
download_url='https://pypi.python.org/pypi/dependency_injector',
|
||||||
license='BSD New',
|
install_requires=requirements,
|
||||||
packages=['dependency_injector',
|
packages=['dependency_injector',
|
||||||
'dependency_injector.providers'],
|
'dependency_injector.providers'],
|
||||||
platforms=['any'],
|
ext_modules=[
|
||||||
|
Extension('dependency_injector.injections',
|
||||||
|
['dependency_injector/injections.c'],
|
||||||
|
extra_compile_args=['-O2']),
|
||||||
|
],
|
||||||
|
package_data={
|
||||||
|
'dependency_injector': ['*.pxd']
|
||||||
|
},
|
||||||
zip_safe=True,
|
zip_safe=True,
|
||||||
install_requires=requirements,
|
license='BSD New',
|
||||||
|
platforms=['any'],
|
||||||
keywords=[
|
keywords=[
|
||||||
'DI',
|
'DI',
|
||||||
'Dependency injection',
|
'Dependency injection',
|
||||||
|
|
Loading…
Reference in New Issue
Block a user