forked from cyberjunky/python-shellrecharge
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
32 lines (29 loc) · 805 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
[project]
name = "shellrecharge"
version = "0.1.16"
description = "Python 3 package to retrieve public EV charger data from Shell Recharge"
authors = [
{name = "cyberjunky", email = "ron@cyberjunky.nl"},
]
dependencies = [
"aiohttp",
"aiohttp_retry",
"yarl",
"pydantic>=1.0.0, <3.0.0",
"bs4",
]
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3.10",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)"
]
readme = "README.md"
license = {text = "MIT"}
[project.urls]
"Homepage" = "https://github.com/cyberjunky/python-shellrecharge"
"Bug Tracker" = "https://github.com/cyberjunky/python-shellrecharge/issues"
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
[tool.pdm]
package-type = "library"