2015-08-31 13:31:38 +00:00
|
|
|
"""`Dependency injector` setup script."""
|
2015-01-04 13:54:25 +00:00
|
|
|
|
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
|
|
|
|
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:
|
|
|
|
description = readme_file.read()
|
2015-01-05 09:11:21 +00:00
|
|
|
|
2015-10-23 12:20:25 +00:00
|
|
|
# Getting requirements:
|
2015-01-04 13:54:25 +00:00
|
|
|
with open('requirements.txt') as version:
|
|
|
|
requirements = version.readlines()
|
|
|
|
|
2015-10-23 12:20:25 +00:00
|
|
|
# Getting version:
|
|
|
|
with open('dependency_injector/__init__.py') as init_file:
|
|
|
|
version = re.search('VERSION = \'(.*?)\'', init_file.read()).group(1)
|
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,
|
2016-10-12 07:41:50 +00:00
|
|
|
description='Dependency injection microframework for Python',
|
2015-04-03 13:11:05 +00:00
|
|
|
long_description=description,
|
2016-01-11 08:53:35 +00:00
|
|
|
author='ETS Labs',
|
2015-04-03 13:11:05 +00:00
|
|
|
author_email='rmogilatov@gmail.com',
|
2016-03-17 00:02:17 +00:00
|
|
|
maintainer='Roman Mogilatov',
|
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',
|
|
|
|
bugtrack_url='https://github.com/ets-labs/python-dependency-injector' +
|
|
|
|
'/issues',
|
2016-03-17 00:02:17 +00:00
|
|
|
download_url='https://pypi.python.org/pypi/dependency_injector',
|
2016-10-31 09:31:56 +00:00
|
|
|
install_requires=requirements,
|
2016-04-03 14:27:53 +00:00
|
|
|
packages=['dependency_injector',
|
|
|
|
'dependency_injector.providers'],
|
2016-10-31 09:31:56 +00:00
|
|
|
ext_modules=[
|
|
|
|
Extension('dependency_injector.injections',
|
|
|
|
['dependency_injector/injections.c'],
|
|
|
|
extra_compile_args=['-O2']),
|
|
|
|
],
|
|
|
|
package_data={
|
|
|
|
'dependency_injector': ['*.pxd']
|
|
|
|
},
|
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=[
|
|
|
|
'DI',
|
2016-03-17 00:02:17 +00:00
|
|
|
'Dependency injection',
|
2015-04-03 13:21:42 +00:00
|
|
|
'IoC',
|
2016-03-17 00:02:17 +00:00
|
|
|
'Inversion of Control',
|
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.6',
|
|
|
|
'Programming Language :: Python :: 2.7',
|
|
|
|
'Programming Language :: Python :: 3',
|
|
|
|
'Programming Language :: Python :: 3.3',
|
|
|
|
'Programming Language :: Python :: 3.4',
|
2015-10-12 15:20:20 +00:00
|
|
|
'Programming Language :: Python :: 3.5',
|
2015-04-03 13:11:05 +00:00
|
|
|
'Programming Language :: Python :: Implementation :: CPython',
|
|
|
|
'Programming Language :: Python :: Implementation :: PyPy',
|
|
|
|
'Topic :: Software Development',
|
|
|
|
'Topic :: Software Development :: Libraries',
|
|
|
|
'Topic :: Software Development :: Libraries :: Python Modules',
|
|
|
|
])
|