Skip to content

Commit 5a68675

Browse files
committed
chore: update pyproject/setup.py to keep them up to date
1 parent 614ff57 commit 5a68675

File tree

2 files changed

+49
-12
lines changed

2 files changed

+49
-12
lines changed

pyproject.toml

Lines changed: 48 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,56 @@
1-
[build-system]
2-
requires = ["setuptools>=68", "wheel", "setuptools_scm>=7.1"]
3-
build-backend = "setuptools.build_meta"
4-
5-
[tool.poetry]
1+
[project]
62
name = "routingpy"
73
version = "1.3.0"
84
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+
]
910
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",
1329
]
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"
1754

1855
[tool.poetry.dependencies]
1956
python = "^3.9.0"

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
maintainer="Matthieu Viry",
4141
maintainer_email="matthieu.viry@cnrs.fr",
4242
python_requires=">=3.9.0",
43-
url="https://github.com/gis-ops/routing-py",
43+
url="https://github.com/mthh/routingpy",
4444
packages=find_packages(exclude=["*tests*"]),
4545
install_requires=["requests>=2.20.0"],
4646
license="Apache 2.0",

0 commit comments

Comments
 (0)