-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
34 lines (30 loc) · 963 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "naptan"
description = "Get, view and map public transport access node data from the UK's NaPTAN API."
authors = [{name = "Callum Mullins", email = "mullinscr@gmail.com"}]
readme = "README.md"
requires-python = ">=3"
keywords = ["NaPTAN", "NPTG", "DfT", "Bus", "Transport", "Public Transport", "Stop", "Traveline", "ATCO"]
license = {text = "MIT"}
classifiers = [
"Programming Language :: Python :: 3",
]
dependencies = [
"typing; python_version < '3.5'",
"pandas",
"requests",
"folium>=0.9.0",
"pyproj>=2.0.0"
]
dynamic = ["version"]
[project.urls]
homepage = "https://mullinscr.github.io/naptan/"
documentation = "https://mullinscr.github.io/naptan/"
repository = "https://github.com/mullinscr/naptan"
[project.optional-dependencies]
dev = ["pytest", "importlib_resources"]
[tool.hatch.version]
path = "naptan/__init__.py"