-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
41 lines (37 loc) · 1.13 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
[tool.poetry]
name = "entsoe-client"
version = "0.2.3"
description = "Formulate human-readable queries and retrieve data from ENTSO-E into pandas.DataFrame format."
readme="README.rst"
license="MIT"
authors = ["Dario Hett <[email protected]>"]
homepage = "https://github.com/DarioHett/entsoe-client"
repository = "https://github.com/DarioHett/entsoe-client"
keywords = ["entsoe", "entso-e", "power", "electricity", "europe", "tso", "transparency platform"]
classifiers = [
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
]
include = [
"LICENSE",
]
[tool.poetry.dependencies]
python = "^3.9"
pandas = ">=2.1.4"
requests = "^2.26.0"
beautifulsoup4 = "^4.9.3"
arrow = "^1.1.1"
python-dateutil = "^2.8.2"
pytz = "2023.3.post1"
lxml = "^4.6.3"
tenacity = "^8.0.1"
[tool.poetry.dev-dependencies]
pytest = "^5.2"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"