Clean up, changelog update

This commit is contained in:
Roman Mogilatov 2016-11-02 23:17:50 +02:00
parent abbc7e89a1
commit 0421ae2d87
4 changed files with 12 additions and 4 deletions

View File

@ -38,6 +38,9 @@ build: clean cythonize
install: clean cythonize
python setup.py install
uninstall:
- pip uninstall -y -q dependency-injector 2> /dev/null
test:
# Unit tests with coverage report
coverage erase

View File

@ -56,7 +56,7 @@ author = u'ETS Labs'
#
# The short X.Y version.
# Getting version:
with open('../dependency_injector/__init__.py') as init_file:
with open('../src/dependency_injector/__init__.py') as init_file:
version = re.search('VERSION = \'(.*?)\'', init_file.read()).group(1)
# The full version, including alpha/beta/rc tags.
@ -281,7 +281,7 @@ man_pages = [
# dir menu entry, description, category)
texinfo_documents = [
(master_doc, 'Dependency Injector', u'Dependency Injector Documentation',
author, 'Dependency Injector', 'Python dependency injection framework',
author, 'Dependency Injector', 'Dependency injection microframework for Python',
'Miscellaneous'),
]

View File

@ -9,9 +9,14 @@ follows `Semantic versioning`_
Development version
-------------------
- Remove ``@inject`` decorator.
- Add ``dependency_injector.injections`` module (C extension).
- Add makefile (``clean``, ``tests`` & ``publish`` commands).
- Remove ``@inject`` decorator.
- Add makefile (``clean``, ``test``, ``build``, ``install``, ``uninstall``
& ``publish`` commands).
- Update repository structure:
- Sources are moved under ``src``.
- Tests are moved under ``tests/unit``.
.. - No features.