-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpyproject.toml
35 lines (29 loc) · 961 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
[tool.poetry]
name = "tcxreader"
version = "0.4.10"
description = "tcxreader is a reader for Garmin’s TCX file format. It also works well with missing data!"
authors = ["Alen Rajšp <[email protected]>"]
license = "MIT"
homepage = "https://github.com/alenrajsp/tcxreader"
repository = "https://github.com/alenrajsp/tcxreader"
classifiers = [
"Programming Language :: Python :: 3.6",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Development Status :: 4 - Beta"
]
packages = [
{include = "tcxreader"}
]
include = [
{ path="LICENSE", format="sdist" },
{ path="README.md", format="sdist" }
]
exclude= ["tests", "examples", "tcxreader/tests", "development"]
[tool.poetry.dependencies]
python = "^3.6"
[tool.poetry.dev-dependencies]
# Add your development dependencies here (e.g., testing frameworks)
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"