add dev and testing setup.py aliases, fix changelog after reviewing commits
This commit is contained in:
@@ -12,11 +12,15 @@ Next release
|
|||||||
|
|
||||||
- Updated Brazilian Portugese translations.
|
- Updated Brazilian Portugese translations.
|
||||||
|
|
||||||
- Updated Japanese translation.
|
- Updated Japanese translations.
|
||||||
|
|
||||||
|
- Updated Russian translations.
|
||||||
|
|
||||||
- Fix documentation: 0.9.3 allowed explicitly passing None to DateTime
|
- Fix documentation: 0.9.3 allowed explicitly passing None to DateTime
|
||||||
to have no default timezone applied.
|
to have no default timezone applied.
|
||||||
|
|
||||||
|
- Add ``dev`` and ``docs`` setup.py aliases (e.g. ``python setup.py dev``).
|
||||||
|
|
||||||
0.9.7 (2012-03-20)
|
0.9.7 (2012-03-20)
|
||||||
------------------
|
------------------
|
||||||
|
|
||||||
|
@@ -8,6 +8,10 @@ nocapture=1
|
|||||||
cover-package=colander
|
cover-package=colander
|
||||||
cover-erase=1
|
cover-erase=1
|
||||||
|
|
||||||
|
[aliases]
|
||||||
|
dev = develop easy_install colander[testing]
|
||||||
|
docs = develop easy_install colander[docs]
|
||||||
|
|
||||||
[compile_catalog]
|
[compile_catalog]
|
||||||
directory = colander/locale
|
directory = colander/locale
|
||||||
domain = colander
|
domain = colander
|
||||||
|
8
setup.py
8
setup.py
@@ -28,6 +28,9 @@ except:
|
|||||||
|
|
||||||
requires = ['translationstring']
|
requires = ['translationstring']
|
||||||
|
|
||||||
|
testing_extras = ['nose', 'coverage']
|
||||||
|
docs_extras = ['Sphinx']
|
||||||
|
|
||||||
setup(name='colander',
|
setup(name='colander',
|
||||||
version='0.9.7',
|
version='0.9.7',
|
||||||
description=('A simple schema-based serialization and deserialization '
|
description=('A simple schema-based serialization and deserialization '
|
||||||
@@ -52,8 +55,11 @@ setup(name='colander',
|
|||||||
packages=find_packages(),
|
packages=find_packages(),
|
||||||
include_package_data=True,
|
include_package_data=True,
|
||||||
zip_safe=False,
|
zip_safe=False,
|
||||||
tests_require = requires,
|
|
||||||
install_requires = requires,
|
install_requires = requires,
|
||||||
test_suite="colander",
|
test_suite="colander",
|
||||||
|
extras_require = {
|
||||||
|
'testing':testing_extras,
|
||||||
|
'docs':docs_extras,
|
||||||
|
},
|
||||||
)
|
)
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user