-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
34 lines (29 loc) · 878 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"
[tool.hatch.build.targets.wheel]
packages = ["src/pysuez"]
[tool.hatch.version]
path = "__about__.py"
[project]
name = "pysuezV2"
dynamic = ["version"]
authors = [
{ name = "Farid N27" },
{ name = "jb101010-2", email = "[email protected]" },
]
description = "Get your water consumption data from your Suez account (www.toutsurmoneau.fr or www.eau-olivet.fr)"
readme = "README.md"
license = "Apache-2.0"
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
dependencies = ["aiohttp"]
keywords = ["suez", "toutsurmoneau", "water consumption"]
[project.scripts]
spam-cli = "pysuez.__main__:main"
[project.urls]
Homepage = "https://github.com/jb101010-2/pySuez"
Issues = "https://github.com/jb101010-2/pySuez/issues"