mirror of
https://github.com/sprockets/sprockets.mixins.mediatype.git
synced 2024-11-22 03:00:25 +00:00
Add msgpack to extras_requires
This commit is contained in:
parent
908f530b7b
commit
b26998a912
3 changed files with 4 additions and 1 deletions
|
@ -1,4 +1,5 @@
|
|||
-r testing.txt
|
||||
-r installation.txt
|
||||
-e .[msgpack]
|
||||
sphinx>=1.2,<2
|
||||
sphinxcontrib-httpdomain>=1.3,<2
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
coverage>=3.7,<3.99 # prevent installing 4.0b on ALL pip versions
|
||||
mock>=1.3,<2
|
||||
u-msgpack-python>=2,<3
|
||||
nose>=1.3,<2
|
||||
|
|
3
setup.py
3
setup.py
|
@ -54,6 +54,9 @@ setuptools.setup(
|
|||
packages=setuptools.find_packages(),
|
||||
install_requires=install_requires,
|
||||
tests_require=tests_require,
|
||||
extras_require={
|
||||
'msgpack': ['u-msgpack-python>=2.5.0,<3']
|
||||
},
|
||||
namespace_packages=['sprockets', 'sprockets.mixins'],
|
||||
test_suite='nose.collector',
|
||||
python_requires='>=3.5',
|
||||
|
|
Loading…
Reference in a new issue