|
1 | | -[build-system] |
2 | | -requires = ["setuptools>=68", "wheel", "setuptools_scm>=7.1"] |
3 | | -build-backend = "setuptools.build_meta" |
4 | | - |
5 | | -[tool.poetry] |
| 1 | +[project] |
6 | 2 | name = "routingpy" |
7 | 3 | version = "1.3.0" |
8 | 4 | description = "One lib to route them all." |
| 5 | +readme = "README.rst" |
| 6 | +license = { text = "Apache-2.0" } |
| 7 | +maintainers = [ |
| 8 | + { name = "Matthieu Viry", email = "matthieu.viry@cnrs.fr" }, |
| 9 | +] |
9 | 10 | authors = [ |
10 | | - "Nils Nolde <nils@gis-ops.com>", |
11 | | - "Tim Ellersiek <tim@gis-ops.com>", |
12 | | - "Christian Beiwinkel <christian@gis-ops.com>", |
| 11 | + { name = "Nils Nolde", email = "nils@gis-ops.com" }, |
| 12 | + { name = "Tim Ellersiek", email = "tim@gis-ops.com" }, |
| 13 | + { name = "Christian Beiwinkel", email = "christian@gis-ops.com" }, |
| 14 | +] |
| 15 | +keywords = [ |
| 16 | + "routing", |
| 17 | + "routing-engine", |
| 18 | + "routing-service", |
| 19 | + "openrouteservice", |
| 20 | + "ors", |
| 21 | + "graphhopper", |
| 22 | + "osrm", |
| 23 | + "valhalla", |
| 24 | + "mapbox", |
| 25 | + "google-maps", |
| 26 | + "google-maps-api", |
| 27 | + "google-maps-directions-api", |
| 28 | + "here-routing-api", |
13 | 29 | ] |
14 | | -license = "Apache2" |
15 | | -readme = 'README.rst' |
16 | | -maintainers = ["Matthieu Viry <matthieu.viry@cnrs.fr>"] |
| 30 | +classifiers = [ |
| 31 | + "Development Status :: 5 - Production/Stable", |
| 32 | + "License :: OSI Approved :: Apache Software License", |
| 33 | + "Natural Language :: English", |
| 34 | + "Programming Language :: Python :: 3", |
| 35 | + "Programming Language :: Python :: 3.9", |
| 36 | + "Programming Language :: Python :: 3.10", |
| 37 | + "Programming Language :: Python :: 3.11", |
| 38 | + "Programming Language :: Python :: 3.12", |
| 39 | + "Programming Language :: Python :: 3.13", |
| 40 | + "Programming Language :: Python :: Implementation :: CPython", |
| 41 | + "Programming Language :: Python :: Implementation :: PyPy", |
| 42 | +] |
| 43 | +dynamic = ["dependencies", "requires-python"] |
| 44 | + |
| 45 | +[project.urls] |
| 46 | +homepage = "https://github.com/mthh/routingpy" |
| 47 | +repository = "https://github.com/mthh/routingpy" |
| 48 | +documentation = "https://routingpy.readthedocs.io/" |
| 49 | +"Bug Tracker" = "https://github.com/mthh/routingpy/issues" |
| 50 | + |
| 51 | +[build-system] |
| 52 | +requires = ["setuptools>=68", "wheel", "setuptools_scm>=7.1"] |
| 53 | +build-backend = "setuptools.build_meta" |
17 | 54 |
|
18 | 55 | [tool.poetry.dependencies] |
19 | 56 | python = "^3.9.0" |
|
0 commit comments