-
Notifications
You must be signed in to change notification settings - Fork 19
/
pyproject.toml
46 lines (39 loc) · 1.12 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
[tool.poetry]
name = "fit-to-tcx"
version = "0.2"
description = ""
readme = "README.md"
authors = ["Gustav Tiger <[email protected]>"]
license = "MIT"
repository = "https://github.com/Tigge/FIT-to-TCX"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: Healthcare Industry",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9"
]
packages = [{include = "fittotcx"}]
[tool.poetry.dependencies]
python = "^3.6"
lxml = "^4.6.2"
fitparse = "^1.2.0"
importlib-metadata = "^3.4.0"
[tool.poetry.dev-dependencies]
black = "20.8b1"
flake8 = "3.8.4"
coverage = {extras = ["toml"], version = "^5.3.1"}
[tool.poetry.scripts]
fittotcx = "fittotcx.program:main"
[build-system]
requires = ["poetry_core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 88
target-version = ['py37']
[tool.coverage.run]
relative_files = true