mirror of
https://github.com/ets-labs/python-dependency-injector.git
synced 2024-11-21 17:16:46 +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
|
||||
python setup.py install
|
||||
|
||||
uninstall:
|
||||
- pip uninstall -y -q dependency-injector 2> /dev/null
|
||||
|
||||
test:
|
||||
# Unit tests with coverage report
|
||||
coverage erase
|
||||
|
|
|
@ -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'),
|
||||
]
|
||||
|
||||
|
|
|
@ -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.
|
||||
|
||||
|
|
Binary file not shown.
Loading…
Reference in New Issue
Block a user