Mentions légales du service

Skip to content
Snippets Groups Projects
Commit a9d326c5 authored by BADTS Thomas's avatar BADTS Thomas
Browse files

Change version value to __init__.py

parent d442f38c
No related branches found
No related tags found
1 merge request!33Dev
......@@ -3,4 +3,4 @@ current_version = 3.2.2
commit = True
tag = True
[bumpversion:file:pyproject.toml]
[bumpversion:e2clab/__init__.py]
......@@ -8,3 +8,4 @@ from e2clab.optimizer import Optimizer # noqa: E402
from e2clab.services import Service # noqa: E402
__all__ = ["Optimizer", "Service"]
__version__ = "3.2.2"
......@@ -12,7 +12,7 @@ name = "e2clab"
description = "Your Edge-to-Cloud laboratory"
version = "3.2.2"
readme = "README.rst"
license = {file = "LICENSE.txt"}
license = { file = "LICENSE.txt" }
keywords = [
"methodology",
"reproducibility",
......@@ -32,14 +32,10 @@ dependencies = [
"jsonschema>=3.2.0,<5",
"parallel-ssh>=2.3.2,<=2.5.4",
"questionary>2.0.0",
"python-dotenv"
]
authors = [
{name = "Daniel Rosendo", email = "daniel.rosendo@inria.fr"},
]
maintainers = [
{name = "Thomas Badts", email = "thomas.badts@inria.fr"},
"python-dotenv",
]
authors = [{ name = "Daniel Rosendo", email = "daniel.rosendo@inria.fr" }]
maintainers = [{ name = "Thomas Badts", email = "thomas.badts@inria.fr" }]
classifiers = [
" Development Status :: 4 - Beta",
# Intended audience
......@@ -56,6 +52,9 @@ classifiers = [
"Programming Language :: Python :: 3.11",
]
[tool.setuptools.dynamic]
version = { attr = "e2clab.__version__" }
[project.urls]
Homepage = "https://e2clab.gitlabpages.inria.fr/e2clab/"
Documentation = "https://e2clab.gitlabpages.inria.fr/e2clab/"
......@@ -66,13 +65,7 @@ e2clab = "e2clab.cli:main"
[project.optional-dependencies]
# Docs and testing
dev = [
"tox",
"pre-commit",
"pytest",
"pytest-cov",
"ruff",
]
dev = ["tox", "pre-commit", "pytest", "pytest-cov", "ruff"]
docs = [
"sphinx",
"sphinx_rtd_theme",
......@@ -83,6 +76,4 @@ docs = [
"sphinx-tabs",
]
# Optimization capabilities
opt = [
"ray[tune]"
]
opt = ["ray[tune]"]
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment