pyproject.toml: use setuptools_scm to auto manage versions

This commit is contained in:
Aleix Conchillo Flaqué
2024-04-03 16:13:07 -07:00
parent 48bb3c6955
commit d57d473c13
2 changed files with 7 additions and 2 deletions

View File

@@ -1,10 +1,10 @@
[build-system]
requires = ["setuptools"]
requires = ["setuptools>=64", "setuptools_scm>=8"]
build-backend = "setuptools.build_meta"
[project]
name = "dailyai"
version = "0.0.3.1"
dynamic = ["version"]
description = "An open source framework for real-time, multi-modal, conversational AI applications"
license = { text = "BSD 2-Clause License" }
readme = "README.md"
@@ -49,3 +49,6 @@ where = ["src"]
[tool.pytest.ini_options]
pythonpath = ["src"]
[tool.setuptools_scm]
# Empty

View File

@@ -2,3 +2,5 @@ autopep8==2.0.4
build==1.0.3
pip-tools==7.4.1
pytest==8.1.1
setuptools==69.2.0
setuptools_scm==8.0.4