-
Notifications
You must be signed in to change notification settings - Fork 22
/
pyproject.toml
52 lines (47 loc) · 1.23 KB
/
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
42
43
44
45
46
47
48
49
50
51
52
[tool.poetry]
name = "sweat"
version = "0.25.0"
description = "Workout analysis"
license = "MIT"
authors = ["Aart Goossens <[email protected]>"]
readme = "README.md"
homepage = "https://github.com/goldencheetah/sweatpy"
repository = "https://github.com/goldencheetah/sweatpy"
documentation = "https://github.com/goldencheetah/sweatpy"
[tool.poetry.dependencies]
python = "^3.6.1"
fitparse = "^1.1.0"
lmfit = "^1.0.0"
scipy = "^1.4.1"
pandas = "^1.0.3"
requests = "^2.23.0"
pydantic = "^1.4"
pyyaml = "^6.0.0"
scikit-learn = ">= 0.23.1"
stravalib = "^0.10.2"
matplotlib = "^3.3.4"
[tool.poetry.dev-dependencies]
pytest = "^3.4"
mkdocs = "^1.1"
mkdocs-material = "^5.1.0"
# https://tox.readthedocs.io/en/latest/example/basic.html#pyproject-toml-tox-legacy-ini
black = "^19.10b0"
mknotebooks = "^0.6.0"
vcrpy = "^4.0.2"
openpyxl = "^3.0.7"
[tool.tox]
legacy_tox_ini = """
[tox]
isolated_build = true
envlist = py36,py37,py38,py39,py3.10
[testenv]
whitelist_externals = poetry
passenv = PYTHONDONTWRITEBYTECODE
commands =
# About the --no-root flag: https://github.com/python-poetry/poetry/issues/1204
poetry install -v --no-root
poetry run pytest tests/ {posargs}
"""
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"