-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpyproject.toml
More file actions
61 lines (55 loc) · 1.6 KB
/
pyproject.toml
File metadata and controls
61 lines (55 loc) · 1.6 KB
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "python-esios"
version = "2.4.1"
description = "A Python wrapper for the ESIOS API (Spanish electricity market)"
readme = "README.md"
license = "GPL-3.0-only"
requires-python = ">=3.10"
authors = [
{ name = "Jesús López", email = "jesus.lopez@datons.com" },
]
keywords = ["esios", "ree", "energy", "electricity", "spain", "api"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering",
]
dependencies = [
"httpx>=0.27",
"pandas>=2.0",
"pyarrow>=15.0",
"pydantic>=2.0",
"tenacity>=8.0",
"python-calamine>=0.2",
"beautifulsoup4>=4.12",
"typer>=0.12",
"rich>=13.0",
"pyyaml>=6.0",
]
[project.scripts]
esios = "esios.cli:app"
[project.urls]
Homepage = "https://github.com/datons/python-esios"
Repository = "https://github.com/datons/python-esios"
Issues = "https://github.com/datons/python-esios/issues"
Changelog = "https://github.com/datons/python-esios/releases"
[tool.hatch.build.targets.wheel]
packages = ["src/esios"]
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["src"]
[dependency-groups]
dev = [
"kaleido>=1.2.0",
"plotly>=6.6.0",
]