Skip to content

Commit

Permalink
CI: Use versioningit for automatic package versioning
Browse files Browse the repository at this point in the history
  • Loading branch information
amotl committed Mar 9, 2023
1 parent d361ca0 commit 27cf586
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGES.rst
Expand Up @@ -45,6 +45,7 @@ in progress
- UX: Improve CLI help
- Format: Add support for reading compressed files in Gzip format
- CI: Run software tests on GHA
- CI: Use ``versioningit`` for automatic package versioning


2023-01-xx 0.0.0
Expand Down
15 changes: 14 additions & 1 deletion pyproject.toml
@@ -1,6 +1,16 @@
[build-system]
build-backend = "setuptools.build_meta"
requires = [
"setuptools>=42", # At least v42 of setuptools required.
"versioningit",
]

[tool.versioningit.vcs]
method = "git"
default-tag = "0.0.0"

[project]
name = "skeem"
version = "0.0.0"
description = "Infer SQL DDL statements from tabular data"
readme = "README.rst"
keywords = [
Expand Down Expand Up @@ -44,6 +54,9 @@ dependencies = [
"sql-formatter<0.7",
"sqlmakeuper<0.2",
]
dynamic = [
"version",
]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
Expand Down

0 comments on commit 27cf586

Please sign in to comment.