Skip to content

Commit

Permalink
pyproject.toml: use setuptools_scm to auto manage versions
Browse files Browse the repository at this point in the history
  • Loading branch information
aconchillo committed Apr 3, 2024
1 parent 48bb3c6 commit d57d473
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
7 changes: 5 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down Expand Up @@ -49,3 +49,6 @@ where = ["src"]

[tool.pytest.ini_options]
pythonpath = ["src"]

[tool.setuptools_scm]
# Empty
2 changes: 2 additions & 0 deletions requirements-dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit d57d473

Please sign in to comment.