mirror of
https://github.com/kennethreitz/httpbin.git
synced 2026-06-05 14:50:17 +00:00
dc7e81c4a1
This uses twine to upload wheels and source distributions that we create for httpbin.
16 lines
246 B
INI
16 lines
246 B
INI
[tox]
|
|
envlist = py27,py34
|
|
|
|
[testenv]
|
|
commands=python test_httpbin.py
|
|
|
|
[testenv:release]
|
|
skipdist = true
|
|
usedevelop = false
|
|
deps =
|
|
twine>=1.6.0
|
|
wheel
|
|
commands =
|
|
python setup.py sdist bdist_wheel
|
|
twine upload --skip-existing dist/*
|