-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
37 lines (33 loc) · 938 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
[tool.poetry]
name = "gpx-linesman"
packages = [
{ include = "linesman" }
]
version = "0.3.0"
description = "Command line tool for measuring the straightness of a gpx track"
authors = ["burrscurr <burrscurr@users.noreply.github.com>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/burrscurr/linesman.git"
documentation = "https://linesman.readthedocs.io"
classifiers = [
"Operating System :: OS Independent",
"Environment :: Console",
"Topic :: Scientific/Engineering :: GIS"
]
[tool.poetry.dependencies]
python = "^3.6"
gpxpy = "^1.4.2"
importlib-metadata = {version = ">=1,<4", python = "<3.8"}
geographiclib = "^1.50"
pyproj = "^3.0.0"
[tool.poetry.dev-dependencies]
pytest = "^6.2.1"
sphinx = "^3.4.3"
sphinx-rtd-theme = "^0.5.1"
coveralls = "^3.0.0"
[tool.poetry.scripts]
linesman = 'linesman:run'
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"