-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpyproject.toml
54 lines (44 loc) · 1.16 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
# https://packaging.python.org/tutorials/packaging-projects/
[project]
name = "ideenergy"
version = "2.0.0"
dependencies = [
"aiohttp <4.0,>=3.8",
"importlib-metadata; python_version >= '3.11'",
]
authors = [
{name = "Luis López", email = "luis@cuarentaydos.com"},
]
readme = "README.md"
description ="Programmatic access to consumer energy consumption from https://www.i-de.es/ (Spanish energy distributor)"
license = {file = "LICENSE"}
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
requires-python = ">=3.11"
[project.scripts]
ideenergy = "ideenergy.cli:main"
[project.urls]
Homepage = "https://github.com/ldotlopez/ideenergy"
Issues = "https://github.com/ldotlopez/ideenergy/issues"
Repository = "https://github.com/ldotlopez/ideenergy.git"
[build-system]
requires = [
"setuptools>=42",
"wheel"
]
build-backend = "setuptools.build_meta"
[bdist_wheel]
universal = 1
[tool.black]
target-version = ['py311']
[tool.isort]
profile = "black"
[tool.mypy]
files = ["ideenergy"]
[tool.pyupgrade]
addopts = "--py311-plus"
[tool.setuptools]
packages = ["ideenergy"]