diff --git a/pixano_documentation/__init__.py b/pixano_documentation/__init__.py new file mode 100644 index 0000000..8ca0ace --- /dev/null +++ b/pixano_documentation/__init__.py @@ -0,0 +1,12 @@ +# @Copyright: CEA-LIST/DIASI/SIALV/LVA (2023) +# @Author: CEA-LIST/DIASI/SIALV/LVA +# @License: CECILL-C +# +# This software is a collaborative computer program whose purpose is to +# generate and explore labeled data for computer vision applications. +# This software is governed by the CeCILL-C license under French law and +# abiding by the rules of distribution of free software. You can use, +# modify and/ or redistribute the software under the terms of the CeCILL-C +# license as circulated by CEA, CNRS and INRIA at the following URL +# +# http://www.cecill.info diff --git a/pixano_documentation/__version__.py b/pixano_documentation/__version__.py new file mode 100644 index 0000000..7869237 --- /dev/null +++ b/pixano_documentation/__version__.py @@ -0,0 +1,14 @@ +# @Copyright: CEA-LIST/DIASI/SIALV/LVA (2023) +# @Author: CEA-LIST/DIASI/SIALV/LVA +# @License: CECILL-C +# +# This software is a collaborative computer program whose purpose is to +# generate and explore labeled data for computer vision applications. +# This software is governed by the CeCILL-C license under French law and +# abiding by the rules of distribution of free software. You can use, +# modify and/ or redistribute the software under the terms of the CeCILL-C +# license as circulated by CEA, CNRS and INRIA at the following URL +# +# http://www.cecill.info + +__version__ = "1.0.0" diff --git a/pyproject.toml b/pyproject.toml index ff172f9..bbe666a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "hatchling.build" [project] name = "pixano-documentation" -version = "1.0.0" +dynamic = ["version"] description = 'Documentation website for Pixano' readme = "README.md" requires-python = "~=3.10" @@ -33,3 +33,6 @@ dependencies = [ Documentation = "https://github.com/pixano/pixano.github.io#readme" Issues = "https://github.com/pixano/pixano.github.io/issues" Source = "https://github.com/pixano/pixano.github.io" + +[tool.hatch.version] +path = "pixano_documentation/__version__.py" \ No newline at end of file