-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (37 loc) · 941 Bytes
/
pyproject.toml
File metadata and controls
42 lines (37 loc) · 941 Bytes
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
[project]
name = "polyline"
version = "2.0.4"
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.8"
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",
"standard-imghdr;python_version > '3.12'",
"tomli;python_version < '3.11'",
]
publish = [
"build~=0.8",
"twine~=6.0"
]
[build-system]
requires = [
"setuptools>=69.0"
]
build-backend = "setuptools.build_meta"
[tool.pytest.ini_options]
addopts = "--doctest-modules --ignore=docs --cov=polyline --cov-report term-missing"