python-dependency-injector/setup.py

91 lines
2.8 KiB
Python
Raw Normal View History

2015-08-31 13:31:38 +00:00
"""`Dependency injector` setup script."""
2015-01-04 13:54:25 +00:00
2015-04-03 13:11:05 +00:00
import os
import re
2015-01-04 13:54:25 +00:00
from setuptools import setup
2015-04-03 13:11:05 +00:00
from setuptools import Command
2015-01-04 13:54:25 +00:00
2015-04-02 22:01:05 +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
# Getting requirements:
2015-01-04 13:54:25 +00:00
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)
2015-01-04 13:54:25 +00:00
2015-04-03 13:11:05 +00:00
class PublishCommand(Command):
"""Setuptools `publish` command."""
description = "Publish current distribution to PyPi and create tag"
user_options = []
2015-04-03 13:11:05 +00:00
def initialize_options(self):
"""Init options."""
def finalize_options(self):
"""Finalize options."""
def run(self):
"""Command execution."""
self.run_command('sdist')
self.run_command('upload')
2015-04-03 13:11:05 +00:00
os.system('git tag -a {0} -m \'version {0}\''.format(version))
os.system('git push --tags')
2015-08-31 13:31:38 +00:00
setup(name='dependency_injector',
2015-04-03 13:11:05 +00:00
version=version,
description='Python dependency injection framework',
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-01-11 09:30:50 +00:00
maintainer='ETS Labs',
2015-04-03 13:11:05 +00:00
maintainer_email='rmogilatov@gmail.com',
2016-01-11 08:53:35 +00:00
url='https://github.com/ets-labs/dependency_injector',
2015-04-03 13:11:05 +00:00
license='BSD New',
2015-08-31 13:31:38 +00:00
packages=['dependency_injector'],
2015-04-03 13:11:05 +00:00
zip_safe=True,
install_requires=requirements,
cmdclass={
'publish': PublishCommand,
},
2015-04-03 13:21:42 +00:00
keywords=[
'Dependency injection',
'Dependency injection framework',
2015-04-03 13:21:42 +00:00
'Dependency injection container',
2015-04-14 17:18:25 +00:00
'Dependency injector',
'Dependency management',
2015-04-03 13:21:42 +00:00
'DI',
'DI Container',
2015-04-03 13:21:42 +00:00
'Inversion of Control',
'Inversion of Control container',
'IoC',
'IoC container',
],
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',
])