mirror of
https://github.com/ets-labs/python-dependency-injector.git
synced 2024-11-22 09:36:48 +03:00
72 lines
2.5 KiB
Python
72 lines
2.5 KiB
Python
"""`Dependency injector` setup script."""
|
|
|
|
import re
|
|
|
|
from setuptools import setup, Extension
|
|
|
|
|
|
# Getting description:
|
|
with open('README.rst') as readme_file:
|
|
description = readme_file.read()
|
|
|
|
# Getting requirements:
|
|
with open('requirements.txt') as version:
|
|
requirements = version.readlines()
|
|
|
|
# Getting version:
|
|
with open('dependency_injector/__init__.py') as init_file:
|
|
version = re.search('VERSION = \'(.*?)\'', init_file.read()).group(1)
|
|
|
|
|
|
setup(name='dependency-injector',
|
|
version=version,
|
|
description='Dependency injection microframework for Python',
|
|
long_description=description,
|
|
author='ETS Labs',
|
|
author_email='rmogilatov@gmail.com',
|
|
maintainer='Roman Mogilatov',
|
|
maintainer_email='rmogilatov@gmail.com',
|
|
url='https://github.com/ets-labs/python-dependency-injector',
|
|
bugtrack_url='https://github.com/ets-labs/python-dependency-injector' +
|
|
'/issues',
|
|
download_url='https://pypi.python.org/pypi/dependency_injector',
|
|
install_requires=requirements,
|
|
packages=['dependency_injector',
|
|
'dependency_injector.providers'],
|
|
ext_modules=[
|
|
Extension('dependency_injector.injections',
|
|
['dependency_injector/injections.c'],
|
|
extra_compile_args=['-O2']),
|
|
],
|
|
package_data={
|
|
'dependency_injector': ['*.pxd']
|
|
},
|
|
zip_safe=True,
|
|
license='BSD New',
|
|
platforms=['any'],
|
|
keywords=[
|
|
'DI',
|
|
'Dependency injection',
|
|
'IoC',
|
|
'Inversion of Control',
|
|
],
|
|
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.6',
|
|
'Programming Language :: Python :: 2.7',
|
|
'Programming Language :: Python :: 3',
|
|
'Programming Language :: Python :: 3.3',
|
|
'Programming Language :: Python :: 3.4',
|
|
'Programming Language :: Python :: 3.5',
|
|
'Programming Language :: Python :: Implementation :: CPython',
|
|
'Programming Language :: Python :: Implementation :: PyPy',
|
|
'Topic :: Software Development',
|
|
'Topic :: Software Development :: Libraries',
|
|
'Topic :: Software Development :: Libraries :: Python Modules',
|
|
])
|