forked from tilery/python-vtzero
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtox.ini
More file actions
44 lines (40 loc) · 808 Bytes
/
tox.ini
File metadata and controls
44 lines (40 loc) · 808 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
[tox]
envlist = py35,py36,py37,py38,py39
isolated_build = true
[testenv]
extras = test
deps =
setuptools
cython>=0.29.23
commands=
python setup.py build_ext --inplace
pip install . --no-deps --no-build-isolation
python -m pytest
[testenv:wheel]
deps =
{[testenv]deps}
wheel
skip_install = true
extras =
commands =
pip wheel -w wheelhouse --no-deps .
# Release
[testenv:build]
basepython = python3
skip_install = true
deps =
{[testenv:wheel]deps}
commands =
python setup.py sdist
[testenv:release]
setenv =
TWINE_USERNAME = {env:TWINE_USERNAME}
TWINE_PASSWORD = {env:TWINE_PASSWORD}
basepython = python3
skip_install = true
deps =
{[testenv:wheel]deps}
twine >= 1.5.0
commands =
{[testenv:build]commands}
twine upload --skip-existing dist/*