add 'dev' extra, with mock + tox, and a pypy environment
This commit is contained in:
parent
7fab6b3dff
commit
e11c7496a9
10
setup.py
10
setup.py
|
@ -34,8 +34,14 @@ setup(name="magic-wormhole",
|
||||||
"hkdf", "tqdm",
|
"hkdf", "tqdm",
|
||||||
"click",
|
"click",
|
||||||
],
|
],
|
||||||
extras_require={':sys_platform=="win32"': ["pypiwin32"],
|
extras_require={
|
||||||
"tor": ["txtorcon", "ipaddress"]},
|
':sys_platform=="win32"': ["pypiwin32"],
|
||||||
|
"tor": ["txtorcon", "ipaddress"],
|
||||||
|
"dev": [
|
||||||
|
"mock",
|
||||||
|
"tox",
|
||||||
|
],
|
||||||
|
},
|
||||||
test_suite="wormhole.test",
|
test_suite="wormhole.test",
|
||||||
cmdclass=commands,
|
cmdclass=commands,
|
||||||
)
|
)
|
||||||
|
|
2
tox.ini
2
tox.ini
|
@ -4,7 +4,7 @@
|
||||||
# and then run "tox" from this directory.
|
# and then run "tox" from this directory.
|
||||||
|
|
||||||
[tox]
|
[tox]
|
||||||
envlist = {py27,py33,py34,py35}
|
envlist = {py27,py33,py34,py35,pypy}
|
||||||
skip_missing_interpreters = True
|
skip_missing_interpreters = True
|
||||||
|
|
||||||
# On windows we need "pypiwin32" installed. It's supposedly possible to make
|
# On windows we need "pypiwin32" installed. It's supposedly possible to make
|
||||||
|
|
Loading…
Reference in New Issue
Block a user