-
Notifications
You must be signed in to change notification settings - Fork 21
/
pyproject.toml
41 lines (34 loc) · 858 Bytes
/
pyproject.toml
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
[tool.poetry]
name = "zwift-zwo-docs"
include = ["analyse_zwo.py", "render_docs.py"]
version = "0.1.0"
description = "Documentation for Zwift's structured workout file format"
authors = ["Hal Blackburn <hal.blackburn@gmail.com>"]
[tool.poetry.dependencies]
python = "^3.7"
docopt = "^0.6.2"
lxml = "^4.3"
pyyaml = "^5.1"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"
[tool.poetry.scripts]
zwift-zwo-docs-analyse = 'zwift_zwo_docs.analyse_zwo:main'
zwift-zwo-docs-render = 'zwift_zwo_docs.render_docs:main'
[tool.tox]
legacy_tox_ini = """
[tox]
envlist = py37
skipsdist=True
[testenv]
whitelist_externals=make
commands =
pip install .
make clean-md
make zwift_workout_file_tag_reference.md
[testenv:py37-all]
commands =
pip install .
make clean-all
make zwift_workout_file_tag_reference.md
"""