-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
42 lines (39 loc) · 1.15 KB
/
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
35
36
37
38
39
40
41
42
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "py-osrm-client"
description = "Python client for OSRM api"
readme = "README.md"
license = {text = "MIT"}
version = "1.0.0"
requires-python = ">=3.8"
authors = [
{name = "Tommaso Rossi", email = "tommaso.rossi1@protonmail.com"}
]
keywords = ["osrm", "osrm-api", "client"]
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = [
"aiohttp >= 3.7.0",
"requests >= 2.0.0",
]
[project.optional-dependencies]
tests = [
"pytest > 7.4",
"pytest-asyncio > 0.23",
"requests-mock > 1",
]
[project.urls]
Homepage = "https://github.com/tomrss/py-osrm-client"
Issues = "https://github.com/tomrss/py-osrm-client/issues"