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 Japanese translation.
|
||||
- Updated Japanese translations.
|
||||
|
||||
- Updated Russian translations.
|
||||
|
||||
- Fix documentation: 0.9.3 allowed explicitly passing None to DateTime
|
||||
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)
|
||||
------------------
|
||||
|
||||
|
@@ -8,6 +8,10 @@ nocapture=1
|
||||
cover-package=colander
|
||||
cover-erase=1
|
||||
|
||||
[aliases]
|
||||
dev = develop easy_install colander[testing]
|
||||
docs = develop easy_install colander[docs]
|
||||
|
||||
[compile_catalog]
|
||||
directory = colander/locale
|
||||
domain = colander
|
||||
|
8
setup.py
8
setup.py
@@ -28,6 +28,9 @@ except:
|
||||
|
||||
requires = ['translationstring']
|
||||
|
||||
testing_extras = ['nose', 'coverage']
|
||||
docs_extras = ['Sphinx']
|
||||
|
||||
setup(name='colander',
|
||||
version='0.9.7',
|
||||
description=('A simple schema-based serialization and deserialization '
|
||||
@@ -52,8 +55,11 @@ setup(name='colander',
|
||||
packages=find_packages(),
|
||||
include_package_data=True,
|
||||
zip_safe=False,
|
||||
tests_require = requires,
|
||||
install_requires = requires,
|
||||
test_suite="colander",
|
||||
extras_require = {
|
||||
'testing':testing_extras,
|
||||
'docs':docs_extras,
|
||||
},
|
||||
)
|
||||
|
||||
|
Reference in New Issue
Block a user