mirror of
https://github.com/ets-labs/python-dependency-injector.git
synced 2024-11-22 09:36:48 +03:00
Clean up, changelog update
This commit is contained in:
parent
abbc7e89a1
commit
0421ae2d87
3
Makefile
3
Makefile
|
@ -38,6 +38,9 @@ build: clean cythonize
|
||||||
install: clean cythonize
|
install: clean cythonize
|
||||||
python setup.py install
|
python setup.py install
|
||||||
|
|
||||||
|
uninstall:
|
||||||
|
- pip uninstall -y -q dependency-injector 2> /dev/null
|
||||||
|
|
||||||
test:
|
test:
|
||||||
# Unit tests with coverage report
|
# Unit tests with coverage report
|
||||||
coverage erase
|
coverage erase
|
||||||
|
|
|
@ -56,7 +56,7 @@ author = u'ETS Labs'
|
||||||
#
|
#
|
||||||
# The short X.Y version.
|
# The short X.Y version.
|
||||||
# Getting 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)
|
version = re.search('VERSION = \'(.*?)\'', init_file.read()).group(1)
|
||||||
|
|
||||||
# The full version, including alpha/beta/rc tags.
|
# The full version, including alpha/beta/rc tags.
|
||||||
|
@ -281,7 +281,7 @@ man_pages = [
|
||||||
# dir menu entry, description, category)
|
# dir menu entry, description, category)
|
||||||
texinfo_documents = [
|
texinfo_documents = [
|
||||||
(master_doc, 'Dependency Injector', u'Dependency Injector Documentation',
|
(master_doc, 'Dependency Injector', u'Dependency Injector Documentation',
|
||||||
author, 'Dependency Injector', 'Python dependency injection framework',
|
author, 'Dependency Injector', 'Dependency injection microframework for Python',
|
||||||
'Miscellaneous'),
|
'Miscellaneous'),
|
||||||
]
|
]
|
||||||
|
|
||||||
|
|
|
@ -9,9 +9,14 @@ follows `Semantic versioning`_
|
||||||
|
|
||||||
Development version
|
Development version
|
||||||
-------------------
|
-------------------
|
||||||
- Remove ``@inject`` decorator.
|
|
||||||
- Add ``dependency_injector.injections`` module (C extension).
|
- 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.
|
.. - No features.
|
||||||
|
|
||||||
|
|
Binary file not shown.
Loading…
Reference in New Issue
Block a user