-
Notifications
You must be signed in to change notification settings - Fork 16
/
pyproject.toml
71 lines (63 loc) · 1.66 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[project]
name = "lowatt-enedis"
description = "Python client for Enedis SGE web-service"
readme = "README.md"
license = { text = "GPLv3" }
authors = [{ name = "Lowatt", email = "info@lowatt.fr" }]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3 :: Only",
"Operating System :: OS Independent",
"Topic :: System :: Archiving :: Mirroring",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
]
requires-python = ">=3.9"
dynamic = ["version"]
dependencies = [
"certifi",
"suds-py3",
"rich",
]
[project.urls]
Source = "https://github.com/lowatt/lowatt-enedis"
Tracker = "https://github.com/lowatt/lowatt-enedis/issues"
[project.optional-dependencies]
cryptography = [
"cryptography", # required for lowatt-enedis decrypt
]
test = [
"pytest",
"pytest-cov",
"lxml",
"freezegun",
"pyyaml",
"importlib_metadata;python_version<'3.10'",
]
typing = [
"mypy",
"types-setuptools",
"types-freezegun",
"types-PyYAML",
]
[project.scripts]
lowatt-enedis = "lowatt_enedis.__main__:run"
[tool.hatch.version]
source = "vcs"
[tool.hatch.version.raw-options]
local_scheme = "no-local-version"
[tool.black]
target-version = ['py39']
include = '\.pyi?$'
exclude = '(\.tox|\.git)'
[tool.isort]
profile = "black"
multi_line_output = 3
known_first_party = ["lowatt_enedis"]