Add FlexMeasures plugins, USEF protocol, and Cariflex simulator
- flexmeasures-entsoe: ENTSO-E data plugin - flexmeasures-weather: Weather data plugin - USEF Flex Trading Protocol PDF (2.4MB) - Cariflex simulator (publishes to Redis) - Dashboard Grafana updated with correct InfluxDB queries - All tools extracted in /tools/
This commit is contained in:
51
tools/flexmeasures-entsoe/pyproject.toml
Normal file
51
tools/flexmeasures-entsoe/pyproject.toml
Normal file
@@ -0,0 +1,51 @@
|
||||
[build-system]
|
||||
requires = ["setuptools>=62", "setuptools_scm[toml]>=6.2", "wheel>=0.29.0"]
|
||||
build-backend = "setuptools.build_meta"
|
||||
|
||||
[project]
|
||||
name = "flexmeasures-entsoe"
|
||||
description = "Integrating FlexMeasures with ENTSO-E"
|
||||
readme = "README.md"
|
||||
requires-python = ">=3.10"
|
||||
license = "Apache-2.0"
|
||||
license-files = [
|
||||
"LICENSE",
|
||||
]
|
||||
authors = [
|
||||
{name = "Seita BV", email = "nicolas@seita.nl"}
|
||||
]
|
||||
keywords = ["smart grid", "renewables", "balancing", "forecasting", "scheduling"]
|
||||
classifiers = [
|
||||
"Environment :: Console",
|
||||
"Environment :: Web Environment",
|
||||
"Programming Language :: Python",
|
||||
"Programming Language :: Python :: 3",
|
||||
"Programming Language :: Python :: 3.10",
|
||||
"Programming Language :: Python :: 3.11",
|
||||
"Programming Language :: Python :: 3.12",
|
||||
"Framework :: Flask",
|
||||
"Development Status :: 5 - Production/Stable",
|
||||
"Operating System :: POSIX :: Linux",
|
||||
"Operating System :: MacOS :: MacOS X",
|
||||
"Natural Language :: English"
|
||||
]
|
||||
dynamic = ["version", "dependencies"]
|
||||
|
||||
[project.urls]
|
||||
Homepage = "https://github.com/SeitaBV/flexmeasures-entsoe"
|
||||
Documentation = "https://github.com/SeitaBV/flexmeasures-entsoe"
|
||||
"Source code" = "https://github.com/SeitaBV/flexmeasures-entsoe"
|
||||
|
||||
[project.scripts]
|
||||
flexmeasures = "flexmeasures.utils.app_utils:flexmeasures_cli"
|
||||
|
||||
[tool.setuptools]
|
||||
include-package-data = true
|
||||
|
||||
[tool.setuptools.packages.find]
|
||||
where = ["."]
|
||||
include = ["flexmeasures*"]
|
||||
|
||||
[tool.setuptools_scm]
|
||||
local_scheme = "no-local-version"
|
||||
version_scheme = "guess-next-dev"
|
||||
Reference in New Issue
Block a user