File: pyproject.toml

package info (click to toggle)
polyline 2.0.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 188 kB
  • sloc: python: 260; makefile: 21
file content (41 lines) | stat: -rw-r--r-- 894 bytes parent folder | download
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
[project]
name = "polyline"
version = "2.0.2"
description = "A Python implementation of Google's Encoded Polyline Algorithm Format."
license = {file = "LICENSE"}
authors = [
    {name = "Frederick Jansen"},
    {name = "Bruno M. Custódio"},
]
readme = "README.rst"
requires-python = ">=3.7"

dependencies = [
]

[project.urls]
homepage = "https://github.com/frederickjansen/polyline"
repository = "https://github.com/frederickjansen/polyline"

[project.optional-dependencies]
dev = [
    "pytest~=7.0",
    "pytest-cov~=4.0",
    "pylint~=3.0.3",
    "sphinx~=5.3.0",
    "sphinx-rtd-theme~=1.2.0",
    "tomli;python_version < '3.11'",
]
publish = [
    "build~=0.8",
    "twine~=4.0"
]

[build-system]
requires = [
    "setuptools>=65.0"
]
build-backend = "setuptools.build_meta"

[tool.pytest.ini_options]
addopts = "--doctest-modules --ignore=docs --cov=polyline --cov-report term-missing"